diff options
author | Sierra A <6080951+Sierraffinity@users.noreply.github.com> | 2020-05-18 16:32:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-18 16:32:23 -0700 |
commit | 9601b9616822edb459d406573f5451e57f24d39f (patch) | |
tree | 1c49c7c876dc4677d0957d48a543283109252ce3 | |
parent | 45866cf0946e00d909e060e218a6809c939e997d (diff) | |
parent | 72c8574780466bdf20fe5e41749210b785634a46 (diff) |
Merge pull request #1043 from Kurausukun/patch-1
Fix compilation on gcc 10
-rw-r--r-- | tools/preproc/asm_file.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/preproc/asm_file.cpp b/tools/preproc/asm_file.cpp index 98805c952..7756cadc5 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" |