uri_builder.hpp: 'set_authority' was not declared in this scope
Closed this issue · 1 comments
hansmaad commented
{
network::uri_builder builder;
builder.authority("host.com:80");
}
..cpp-netlib/uri/src/network/uri/uri_builder.hpp:134: error:
'set_authority' was not declared in this scope
There is an authority() interface but no set_authority in uri_builder.
Solution: write an authority parser or remove the authority interface.
glynos commented
Thanks, I'll take a look at this soon.