File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
boost/network/uri/http/detail Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ namespace boost { namespace network { namespace uri {
104
104
qi::rule<iterator, string_type::value_type ()> sub_delims = qi::char_ (" !$&'()*+,;=" );
105
105
qi::rule<iterator, string_type::value_type ()> reserved = gen_delims | sub_delims;
106
106
qi::rule<iterator, string_type::value_type ()> unreserved = qi::alnum | qi::char_ (" -._~" );
107
- qi::rule<iterator, string_type ()> pct_encoded = qi::raw[qi::char_ (" %" ) > qi::repeat (2 )[qi::xdigit]];
107
+ qi::rule<iterator, string_type ()> pct_encoded = qi::raw[qi::char_ (" %" ) >> qi::repeat (2 )[qi::xdigit]];
108
108
qi::rule<iterator, string_type ()> pchar = qi::raw[unreserved | pct_encoded | sub_delims | qi::char_ (" :@" )];
109
109
110
110
hostname<tags::http_default_8bit_tcp_resolve>::parser<iterator> hostname;
@@ -115,7 +115,7 @@ namespace boost { namespace network { namespace uri {
115
115
>> -qi::lexeme[qi::raw[*(unreserved | pct_encoded | sub_delims | qi::char_ (" :" ))] >> ' @' ]
116
116
>> hostname
117
117
>> -qi::lexeme[' :' >> qi::ushort_]
118
- >> -qi::lexeme[' /' >> qi::raw[*pchar >> *(' /' > *pchar)]]
118
+ >> -qi::lexeme[' /' >> qi::raw[*pchar >> *(' /' >> *pchar)]]
119
119
>> -qi::lexeme[' ?' >> qi::raw[*(pchar | qi::char_ (" /?" ))]]
120
120
>> -qi::lexeme[' #' >> qi::raw[*(pchar | qi::char_ (" /?" ))]]
121
121
),
You can’t perform that action at this time.
0 commit comments