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 b1555de commit 0d00b3fCopy full SHA for 0d00b3f
include/network/uri/accessors.hpp
@@ -32,8 +32,8 @@ struct key_value_sequence
32
{
33
query = pair >> *((boost::spirit::qi::lit(';') | '&') >> pair);
34
pair = key >> -('=' >> value);
35
- key = spirit::qi::char_("a-zA-Z_") >> *spirit::qi::char_("a-zA-Z_0-9/%\\-_~\\.");
36
- value = *spirit::qi::char_("a-zA-Z_0-9/%\\-_~\\.+");
+ key = spirit::qi::char_("a-zA-Z_") >> *spirit::qi::char_("-+.~a-zA-Z_0-9/%");
+ value = *spirit::qi::char_("-+.~a-zA-Z_0-9/%");
37
}
38
39
boost::spirit::qi::rule<uri::const_iterator, Map()> query;
0 commit comments