diff options
Diffstat (limited to 'src/other_tools/utils/curl_easy_handle.hpp')
-rw-r--r-- | src/other_tools/utils/curl_easy_handle.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/other_tools/utils/curl_easy_handle.hpp b/src/other_tools/utils/curl_easy_handle.hpp index 81bcbed8..a3dd6e06 100644 --- a/src/other_tools/utils/curl_easy_handle.hpp +++ b/src/other_tools/utils/curl_easy_handle.hpp @@ -72,7 +72,7 @@ class CurlEasyHandle { private: // IMPORTANT: the CurlContext must to be initialized before any curl object! - CurlContext curl_context_{}; + CurlContext curl_context_; std::unique_ptr<CURL, decltype(&curl_easy_closer)> handle_{ nullptr, curl_easy_closer}; |