63 :
m_size{ restinio::utils::uri_normalization::
64 unreserved_chars::estimate_required_capacity( original_path ) }
66 m_data.reset(
new char[ m_size ] );
68 if( m_size != original_path.size() )
70 restinio::utils::uri_normalization::unreserved_chars::
71 normalize_to( original_path, m_data.get() );
75 original_path.begin(), original_path.end(),