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 --- settings.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'settings.cpp') diff --git a/settings.cpp b/settings.cpp index d3c80952..59394c42 100644 --- a/settings.cpp +++ b/settings.cpp @@ -1,6 +1,5 @@ #include "binaryninjaapi.h" -#include "json/json.h" -#include +#include using namespace BinaryNinja; using namespace std; -- cgit v1.3.1