We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5be04e1 commit 3b5947cCopy full SHA for 3b5947c
include/ada/character_sets-inl.h
@@ -470,7 +470,7 @@ constexpr uint8_t WWW_FORM_URLENCODED_PERCENT_ENCODE[32] = {
470
// 50 51 52 53 54 55 56 57
471
0x00 | 0x00 | 0x00 | 0x00 | 0x00 | 0x00 | 0x00 | 0x00,
472
// 58 59 5A 5B 5C 5D 5E 5F
473
- 0x00 | 0x00 | 0x00 | 0x08 | 0x00 | 0x20 | 0x40 | 0x00,
+ 0x00 | 0x00 | 0x00 | 0x08 | 0x10 | 0x20 | 0x40 | 0x00,
474
// 60 61 62 63 64 65 66 67
475
0x01 | 0x00 | 0x00 | 0x00 | 0x00 | 0x00 | 0x00 | 0x00,
476
// 68 69 6A 6B 6C 6D 6E 6F
tests/url_search_params.cpp
@@ -412,8 +412,9 @@ TEST(url_search_params, test_character_set) {
412
// - The userinfo percent-encode set is the path percent-encode set and U+002F
413
// (/), U+003A (:), U+003B (;), U+003D (=), U+0040 (@), U+005B ([) to U+005E
414
// (^), inclusive, and U+007C (|).
415
- std::vector<char> unique_keys = {'/', ':', ';', '=', '@', '[', ']', '^', '|',
416
- '$', '&', '+', ',', '!', '\'', ')', '~'};
+ std::vector<char> unique_keys = {'/', ':', ';', '=', '@', '[',
+ ']', '^', '|', '$', '&', '+',
417
+ ',', '!', '\'', ')', '~', '\\'};
418
for (auto& unique_key : unique_keys) {
419
auto value = "value" + std::string(1, unique_key);
420
search_params.set("key", value);
0 commit comments