Skip to content

Commit

Permalink
Fix missing includes, which fixes build on GCC 13+
Browse files Browse the repository at this point in the history
  • Loading branch information
zrax committed May 7, 2023
1 parent c815673 commit 0710ea0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions ASTree.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <cstring>
#include <cstdint>
#include "ASTree.h"
#include "FastStack.h"
#include "pyc_numeric.h"
Expand Down
1 change: 1 addition & 0 deletions bytecode.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "pyc_numeric.h"
#include "bytecode.h"
#include <stdexcept>
#include <cstdint>
#include <cmath>

#ifdef _MSC_VER
Expand Down

0 comments on commit 0710ea0

Please sign in to comment.