diff options
| author | Christian Blichmann <cblichmann@google.com> | 2022-10-20 11:35:28 +0200 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2022-11-10 16:20:26 -0500 |
| commit | 7763b7ab173151aa01b017e1902e1de716f2a1ee (patch) | |
| tree | 85d0a872c3dfacceb9b655d90d1888d30f246603 /examples/llil_parser/src | |
| parent | a46fea09fd927e165781d8936aa53e8bea69a78a (diff) | |
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
Diffstat (limited to 'examples/llil_parser/src')
| -rw-r--r-- | examples/llil_parser/src/llil_parser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/llil_parser/src/llil_parser.cpp b/examples/llil_parser/src/llil_parser.cpp index fcff0612..7566d4f1 100644 --- a/examples/llil_parser/src/llil_parser.cpp +++ b/examples/llil_parser/src/llil_parser.cpp @@ -1,5 +1,5 @@ -#include <stdio.h> -#include <inttypes.h> +#include <cstdio> +#include <cinttypes> #include "binaryninjacore.h" #include "binaryninjaapi.h" #include "lowlevelilinstruction.h" |
