epee: protect base64_chars, removed dead functions, speed up compile

This commit is contained in:
Jeffro256 2023-02-26 14:49:09 -06:00 committed by jeffro256
parent f307621678
commit 04dfdb332e
4 changed files with 6 additions and 27 deletions

View file

@ -116,16 +116,6 @@ namespace net_utils
return result;
}
//----------------------------------------------------------------------------------------------------
std::string convert_to_url_format_force_all(const std::string& uri)
{
std::string result;
for(size_t i = 0; i!= uri.size(); i++)
{
result += convert(uri[i]);
}
return result;
}
namespace http
{