diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-05-27 07:57:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-27 07:57:02 -0400 |
commit | f75c048434d5dc7538e628206c29a0730404db81 (patch) | |
tree | bbd207c0728fa109f598a3681d4ddfc0e596c1df | |
parent | 6a5548413007cbb86b4460f35b80ac0c9a32a580 (diff) | |
parent | 56ff0ac34d8a1e5173a34f18054f12f8d219a685 (diff) |
Merge pull request #343 from Kurausukun/patch-2
Fix compilation on gcc 10
-rw-r--r-- | tools/preproc/asm_file.cpp | 1 | ||||
-rw-r--r-- | tools/preproc/c_file.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/tools/preproc/asm_file.cpp b/tools/preproc/asm_file.cpp index 383010aa3..07921321d 100644 --- a/tools/preproc/asm_file.cpp +++ b/tools/preproc/asm_file.cpp @@ -20,6 +20,7 @@ #include <cstdio> #include <cstdarg> +#include <stdexcept> #include "preproc.h" #include "asm_file.h" #include "char_util.h" diff --git a/tools/preproc/c_file.cpp b/tools/preproc/c_file.cpp index 229f568fa..b996a048c 100644 --- a/tools/preproc/c_file.cpp +++ b/tools/preproc/c_file.cpp @@ -20,6 +20,7 @@ #include <cstdio> #include <cstdarg> +#include <stdexcept> #include <string> #include <memory> #include "preproc.h" |