From 6e26a28831ce748624c72110ee55e27e3a41897c Mon Sep 17 00:00:00 2001 From: Tixx <83774803+WiserTixx@users.noreply.github.com> Date: Mon, 9 Mar 2026 09:22:50 +0100 Subject: [PATCH] Comment out unused function --- src/Network/Http.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Network/Http.cpp b/src/Network/Http.cpp index 42c4e370..8c153f0b 100644 --- a/src/Network/Http.cpp +++ b/src/Network/Http.cpp @@ -19,7 +19,7 @@ #include #include #include - +/* void WriteHttpDebug(const httplib::Client& client, const std::string& method, const std::string& target, const httplib::Result& result) try { const std::filesystem::path folder = ".https_debug"; std::filesystem::create_directories(folder); @@ -58,7 +58,7 @@ void WriteHttpDebug(const httplib::Client& client, const std::string& method, co of << js.dump(); } catch (const std::exception& e) { error(e.what()); -} +}*/ static size_t CurlWriteCallback(void* contents, size_t size, size_t nmemb, void* userp) { std::string* Result = reinterpret_cast(userp);