mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 05:27:43 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
1665 changed files with 8479 additions and 8479 deletions
|
@ -407,7 +407,7 @@ TEST_CASE(parens_qualifier_questionmark)
|
|||
regex_t regex;
|
||||
static constexpr int num_matches { 5 };
|
||||
regmatch_t matches[num_matches];
|
||||
const char* match_str;
|
||||
char const* match_str;
|
||||
|
||||
EXPECT_EQ(regcomp(®ex, pattern.characters(), REG_EXTENDED), REG_NOERR);
|
||||
|
||||
|
@ -437,7 +437,7 @@ TEST_CASE(parens_qualifier_asterisk)
|
|||
regex_t regex;
|
||||
static constexpr int num_matches { 6 };
|
||||
regmatch_t matches[num_matches];
|
||||
const char* match_str;
|
||||
char const* match_str;
|
||||
|
||||
EXPECT_EQ(regcomp(®ex, pattern.characters(), REG_EXTENDED), REG_NOERR);
|
||||
|
||||
|
@ -483,7 +483,7 @@ TEST_CASE(parens_qualifier_asterisk_2)
|
|||
regex_t regex;
|
||||
static constexpr int num_matches { 6 };
|
||||
regmatch_t matches[num_matches];
|
||||
const char* match_str;
|
||||
char const* match_str;
|
||||
|
||||
EXPECT_EQ(regcomp(®ex, pattern.characters(), REG_EXTENDED), REG_NOERR);
|
||||
|
||||
|
@ -527,7 +527,7 @@ TEST_CASE(mulit_parens_qualifier_too_less_result_values)
|
|||
regex_t regex;
|
||||
static constexpr int num_matches { 4 };
|
||||
regmatch_t matches[num_matches];
|
||||
const char* match_str;
|
||||
char const* match_str;
|
||||
|
||||
matches[3] = { -2, -2, 100 };
|
||||
|
||||
|
@ -591,7 +591,7 @@ TEST_CASE(multi_parens_qualifier_questionmark)
|
|||
regex_t regex;
|
||||
static constexpr int num_matches { 8 };
|
||||
regmatch_t matches[num_matches];
|
||||
const char* match_str;
|
||||
char const* match_str;
|
||||
|
||||
EXPECT_EQ(regcomp(®ex, pattern.characters(), REG_EXTENDED), REG_NOERR);
|
||||
|
||||
|
@ -682,7 +682,7 @@ TEST_CASE(alternative_match_groups)
|
|||
regex_t regex;
|
||||
static constexpr int num_matches { 8 };
|
||||
regmatch_t matches[num_matches];
|
||||
const char* match_str;
|
||||
char const* match_str;
|
||||
|
||||
EXPECT_EQ(regcomp(®ex, pattern.characters(), REG_EXTENDED), REG_NOERR);
|
||||
|
||||
|
@ -788,7 +788,7 @@ TEST_CASE(parens_qualifier_exact)
|
|||
regex_t regex;
|
||||
static constexpr int num_matches { 5 };
|
||||
regmatch_t matches[num_matches];
|
||||
const char* match_str;
|
||||
char const* match_str;
|
||||
|
||||
EXPECT_EQ(regcomp(®ex, pattern.characters(), REG_EXTENDED), REG_NOERR);
|
||||
|
||||
|
@ -835,7 +835,7 @@ TEST_CASE(parens_qualifier_minimum)
|
|||
regex_t regex;
|
||||
static constexpr int num_matches { 5 };
|
||||
regmatch_t matches[num_matches];
|
||||
const char* match_str;
|
||||
char const* match_str;
|
||||
|
||||
EXPECT_EQ(regcomp(®ex, pattern.characters(), REG_EXTENDED), REG_NOERR);
|
||||
|
||||
|
@ -893,7 +893,7 @@ TEST_CASE(parens_qualifier_maximum)
|
|||
regex_t regex;
|
||||
static constexpr int num_matches { 5 };
|
||||
regmatch_t matches[num_matches];
|
||||
const char* match_str;
|
||||
char const* match_str;
|
||||
|
||||
EXPECT_EQ(regcomp(®ex, pattern.characters(), REG_EXTENDED), REG_NOERR);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue