From 8a0c0b6f14a1f503f933b6314e420e475f655308 Mon Sep 17 00:00:00 2001 From: Irit Katriel Date: Fri, 13 Sep 2024 15:51:33 +0100 Subject: [PATCH] gh-124022: add missing #include --- Include/internal/pycore_compile.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Include/internal/pycore_compile.h b/Include/internal/pycore_compile.h index 5359f2d650e2a2..2304d698474355 100644 --- a/Include/internal/pycore_compile.h +++ b/Include/internal/pycore_compile.h @@ -8,6 +8,8 @@ extern "C" { # error "this header requires Py_BUILD_CORE define" #endif +#include + #include "pycore_ast.h" // mod_ty #include "pycore_symtable.h" // _Py_SourceLocation #include "pycore_instruction_sequence.h"