uri: remove componentwise ostream operator
componentwise output was a surprising behaviour for what is sometimes a string-like object. users can elect to write the entire string via all() or the components manually as required.
This commit is contained in:
parent
a6af7a8657
commit
d1649d4acf
@ -215,11 +215,3 @@ util::operator<< (std::ostream &os, util::uri::component c)
|
||||
|
||||
unreachable ();
|
||||
}
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
std::ostream&
|
||||
util::operator<< (std::ostream &os, const util::uri &val)
|
||||
{
|
||||
return os << '[' << util::make_infix (val.components ()) << ']';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user