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/breakpoint/src/breakpoint.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/breakpoint/src/breakpoint.cpp') diff --git a/examples/breakpoint/src/breakpoint.cpp b/examples/breakpoint/src/breakpoint.cpp index 75156e1d..5cddb2a7 100644 --- a/examples/breakpoint/src/breakpoint.cpp +++ b/examples/breakpoint/src/breakpoint.cpp @@ -1,4 +1,4 @@ -#include +#include #include "binaryninjaapi.h" using namespace BinaryNinja; @@ -37,4 +37,4 @@ extern "C" "Convert to breakpoint", "Fill region with breakpoint instructions.", &write_breakpoint); return true; } -} \ No newline at end of file +} -- cgit v1.3.1