mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +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
Notes:
sideshowbarker
2024-07-17 06:00:02 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/3fbf33bd37 Pull-request: https://github.com/SerenityOS/serenity/pull/21846 Reviewed-by: https://github.com/alimpfard ✅
1 changed files with 2 additions and 2 deletions
|
@ -14,12 +14,12 @@
|
||||||
#include <LibRegex/RegexMatcher.h>
|
#include <LibRegex/RegexMatcher.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
static ECMAScriptOptions match_test_api_options(const ECMAScriptOptions options)
|
static ECMAScriptOptions match_test_api_options(ECMAScriptOptions const options)
|
||||||
{
|
{
|
||||||
return options;
|
return options;
|
||||||
}
|
}
|
||||||
|
|
||||||
static PosixOptions match_test_api_options(const PosixOptions options)
|
static PosixOptions match_test_api_options(PosixOptions const options)
|
||||||
{
|
{
|
||||||
return options;
|
return options;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue