Fix missing includes, which fixes build on GCC 13+

This commit is contained in:
Michael Hansen
2023-05-07 13:28:10 -07:00
parent c8156739f1
commit 0710ea07f1
2 changed files with 2 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
#include <cstring>
#include <cstdint>
#include "ASTree.h"
#include "FastStack.h"
#include "pyc_numeric.h"

View File

@@ -1,6 +1,7 @@
#include "pyc_numeric.h"
#include "bytecode.h"
#include <stdexcept>
#include <cstdint>
#include <cmath>
#ifdef _MSC_VER