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 2643c7c commit 2ee4843Copy full SHA for 2ee4843
libs/network/src/uri/parse.cpp
@@ -169,8 +169,7 @@ struct uri_grammar : qi::grammar<
169
// authority = [ userinfo "@" ] host [ ":" port ]
170
hier_part %=
171
(
172
- "//"
173
- >> -(user_info >> '@')
+ (("//" >> user_info >> '@') | "//")
174
>> host
175
>> -(':' >> port)
176
>> path_abempty
libs/network/test/uri/url_test.cpp
@@ -15,7 +15,7 @@
15
16
using namespace boost::network;
17
18
-BOOST_AUTO_TEST_CASE_EXPECTED_FAILURES(basic_uri_test, 1)
+//BOOST_AUTO_TEST_CASE_EXPECTED_FAILURES(basic_uri_test, 1)
19
BOOST_AUTO_TEST_CASE(basic_uri_test) {
20
uri::uri instance("http://www.example.com/");
21
BOOST_REQUIRE(uri::valid(instance));
0 commit comments