Fix a GCC 15 build issue on Windows due to a missing `#include`
- `<vector>` was included implicitly by some other header - The build broke in GCC 15 on MinGW, most likely due to some internal refactoring
This commit is contained in:
parent
7baeb26e32
commit
6aab893fb4
|
@ -29,6 +29,7 @@
|
||||||
# if defined(__SWITCH__)
|
# if defined(__SWITCH__)
|
||||||
# include <switch.h>
|
# include <switch.h>
|
||||||
# elif defined(_WIN32)
|
# elif defined(_WIN32)
|
||||||
|
#include <vector>
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
# else
|
# else
|
||||||
# include <sys/mman.h>
|
# include <sys/mman.h>
|
||||||
|
|
Loading…
Reference in New Issue