File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -339,8 +339,8 @@ struct Token {
339
339
// @see https://urlpattern.spec.whatwg.org/#tokenizer
340
340
class Tokenizer {
341
341
public:
342
- explicit Tokenizer (std::string_view input , token_policy policy )
343
- : input(input ), policy(policy ) {}
342
+ explicit Tokenizer (std::string_view new_input , token_policy new_policy )
343
+ : input(new_input ), policy(new_policy ) {}
344
344
345
345
// @see https://urlpattern.spec.whatwg.org/#get-the-next-code-point
346
346
void get_next_code_point ();
@@ -377,9 +377,9 @@ class Tokenizer {
377
377
378
378
// @see https://urlpattern.spec.whatwg.org/#constructor-string-parser
379
379
struct constructor_string_parser {
380
- explicit constructor_string_parser (std::string_view input ,
381
- std::vector<Token>& token_list )
382
- : input(input ), token_list(token_list ){};
380
+ explicit constructor_string_parser (std::string_view new_input ,
381
+ std::vector<Token>& new_token_list )
382
+ : input(new_input ), token_list(new_token_list ){};
383
383
384
384
// @see https://urlpattern.spec.whatwg.org/#rewind
385
385
void rewind ();
Original file line number Diff line number Diff line change 1
1
#include " ada.h"
2
2
3
+ #include < algorithm>
3
4
#include < optional>
4
5
#include < ranges>
5
6
#include < regex>
@@ -1213,7 +1214,7 @@ std::string generate_pattern_string(
1213
1214
std::string result{};
1214
1215
// Let index list be the result of getting the indices for part list.
1215
1216
// For each index of index list:
1216
- for (size_t index : std::views::iota (size_t { 0 } , part_list.size ())) {
1217
+ for (size_t index : std::views::iota (0UL , part_list.size ())) {
1217
1218
// Let part be part list[index].
1218
1219
auto part = part_list[index ];
1219
1220
// Let previous part be part list[index - 1] if index is greater than 0,
You can’t perform that action at this time.
0 commit comments