-
Notifications
You must be signed in to change notification settings - Fork 73
Boost string ref #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
||
TEST(uri_test, DISABLED_full_uri_range_fragment_end_iterator_test) { | ||
network::uri instance("http://user:[email protected]:80/path?query#fragment"); | ||
//ASSERT_TRUE(std::end(instance) == std::end(*instance.fragment())); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this commented out?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because the types return by end are different now. The tests marked as DISABLED should have been removed altogether.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove these instead?
LGTM |
LGTM -- however I cannot merge this for some reason, I may not be an administrator of the URI repo. |
Your deanberris account was on the list of owners (only your old account was), try it again when you're ready. |
Thanks Glyn -- yes I see this now. I'll merge this and hope that the tests marked DISABLED are just removed later on. |
included in this PR are a small number of configuration changes, plus the uri class now uses boost::string_ref instead of our home-brewed version. The minimum boost version required now is 1.53.
It won't compile on the version of MSVC 2012 that I am using because it doesn't support explicit conversion operators.