mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:28:12 +00:00
LibRegex: Change a couple function parameters to east-const
Automatically done by clang-format-17 (and clang-format-16 leaves these alone afterwards).
This commit is contained in:
parent
6070df40f3
commit
3fbf33bd37
1 changed files with 2 additions and 2 deletions
|
@ -14,12 +14,12 @@
|
|||
#include <LibRegex/RegexMatcher.h>
|
||||
#include <stdio.h>
|
||||
|
||||
static ECMAScriptOptions match_test_api_options(const ECMAScriptOptions options)
|
||||
static ECMAScriptOptions match_test_api_options(ECMAScriptOptions const options)
|
||||
{
|
||||
return options;
|
||||
}
|
||||
|
||||
static PosixOptions match_test_api_options(const PosixOptions options)
|
||||
static PosixOptions match_test_api_options(PosixOptions const options)
|
||||
{
|
||||
return options;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue