2
0
mirror of https://github.com/boostorg/url.git synced 2026-02-14 01:02:17 +00:00

segments refactor

This commit is contained in:
Vinnie Falco
2022-09-05 13:07:38 -07:00
committed by alandefreitas
parent 76ed703052
commit 144a87aa49
81 changed files with 5797 additions and 7101 deletions

View File

@@ -25,7 +25,7 @@ struct doc_container_test
{
std::list< std::string > seq;
for( auto s : u.encoded_segments() )
seq.push_back( s );
seq.push_back( s.decode_to_string() );
return seq;
}
//]