From 7763b7ab173151aa01b017e1902e1de716f2a1ee Mon Sep 17 00:00:00 2001 From: Christian Blichmann Date: Thu, 20 Oct 2022 11:35:28 +0200 Subject: Include C++ standard headers When compiling in C++ mode, the C++ standard library headers should be included instead of their C counterparts. Drive-by: - Removed include of `json/json.h` from `settings.cpp`, where it was not used --- http.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'http.h') diff --git a/http.h b/http.h index da9cbeb2..b9ffd64d 100644 --- a/http.h +++ b/http.h @@ -26,7 +26,7 @@ #include #include #include -#include +#include #ifdef BINARYNINJACORE_LIBRARY #include "downloadprovider.h" @@ -366,4 +366,4 @@ namespace BinaryNinja::Http #undef _STD_SET #undef _STD_UNORDERED_MAP #undef _STD_MAP -} // namespace BinaryNinjaCore::Http \ No newline at end of file +} // namespace BinaryNinjaCore::Http -- cgit v1.3.1