aboutsummaryrefslogtreecommitdiff
path: root/contrib/epee/src
diff options
context:
space:
mode:
authorJeffro256 <jeffro256@tutanota.com>2023-02-26 14:49:09 -0600
committerjeffro256 <jeffro256@tutanota.com>2023-03-20 16:02:48 -0500
commit04dfdb332ea5d4223e26a1c8f821561c9dd2cb03 (patch)
treebd13b20fff92814de106d3b3676b0a52e0d03c1a /contrib/epee/src
parentMerge pull request #8775 (diff)
downloadmonero-04dfdb332ea5d4223e26a1c8f821561c9dd2cb03.tar.xz
epee: protect base64_chars, removed dead functions, speed up compile
Diffstat (limited to 'contrib/epee/src')
-rw-r--r--contrib/epee/src/abstract_http_client.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/contrib/epee/src/abstract_http_client.cpp b/contrib/epee/src/abstract_http_client.cpp
index 3ae09c90e..8897ad9ae 100644
--- a/contrib/epee/src/abstract_http_client.cpp
+++ b/contrib/epee/src/abstract_http_client.cpp
@@ -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
{