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 --- examples/x86_extension/src/x86_extension.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/x86_extension/src') diff --git a/examples/x86_extension/src/x86_extension.cpp b/examples/x86_extension/src/x86_extension.cpp index 80043287..50552cb0 100644 --- a/examples/x86_extension/src/x86_extension.cpp +++ b/examples/x86_extension/src/x86_extension.cpp @@ -1,7 +1,7 @@ #define _CRT_SECURE_NO_WARNINGS -#include -#include -#include +#include +#include +#include #include "binaryninjaapi.h" #include "asmx86/asmx86.h" -- cgit v1.3.1