Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 51690eb

Browse files
committedDec 12, 2024·
fix compiler warnings
1 parent 7a4a504 commit 51690eb

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed
 

‎include/ada/url_pattern.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -339,8 +339,8 @@ struct Token {
339339
// @see https://urlpattern.spec.whatwg.org/#tokenizer
340340
class Tokenizer {
341341
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) {}
344344

345345
// @see https://urlpattern.spec.whatwg.org/#get-the-next-code-point
346346
void get_next_code_point();
@@ -377,9 +377,9 @@ class Tokenizer {
377377

378378
// @see https://urlpattern.spec.whatwg.org/#constructor-string-parser
379379
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){};
383383

384384
// @see https://urlpattern.spec.whatwg.org/#rewind
385385
void rewind();

‎src/url_pattern.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include "ada.h"
22

3+
#include <algorithm>
34
#include <optional>
45
#include <ranges>
56
#include <regex>
@@ -1213,7 +1214,7 @@ std::string generate_pattern_string(
12131214
std::string result{};
12141215
// Let index list be the result of getting the indices for part list.
12151216
// 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())) {
12171218
// Let part be part list[index].
12181219
auto part = part_list[index];
12191220
// Let previous part be part list[index - 1] if index is greater than 0,

0 commit comments

Comments
 (0)