From 528f2495fcde2d5fcff78a181e8455559c742469 Mon Sep 17 00:00:00 2001 From: Jesse Talavera Date: Wed, 21 May 2025 16:16:00 -0400 Subject: [PATCH] Fix a missing `#include` on Windows builds (#2333) * Fix a GCC 15 build issue on Windows due to a missing `#include` - `` was included implicitly by some other header - The build broke in GCC 15 on MinGW, most likely due to some internal refactoring * Indent these `#include`s the same as the others --- src/ARMJIT_Memory.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ARMJIT_Memory.h b/src/ARMJIT_Memory.h index cac9dc62..a6c68fce 100644 --- a/src/ARMJIT_Memory.h +++ b/src/ARMJIT_Memory.h @@ -29,7 +29,8 @@ # if defined(__SWITCH__) # include # elif defined(_WIN32) -#include +# include +# include # else # include # include