From 0710ea07f1feb340a934f5e248b0335738df38f7 Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Sun, 7 May 2023 13:28:10 -0700 Subject: [PATCH] Fix missing includes, which fixes build on GCC 13+ --- ASTree.cpp | 1 + bytecode.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/ASTree.cpp b/ASTree.cpp index 5d8b8a6..d1baadd 100644 --- a/ASTree.cpp +++ b/ASTree.cpp @@ -1,4 +1,5 @@ #include +#include #include "ASTree.h" #include "FastStack.h" #include "pyc_numeric.h" diff --git a/bytecode.cpp b/bytecode.cpp index b96c33d..1a6acad 100644 --- a/bytecode.cpp +++ b/bytecode.cpp @@ -1,6 +1,7 @@ #include "pyc_numeric.h" #include "bytecode.h" #include +#include #include #ifdef _MSC_VER