mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-27 17:39:41 -06:00
Fix a missing #include
on Windows builds (#2333)
* 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 * Indent these `#include`s the same as the others
This commit is contained in:
@ -29,7 +29,8 @@
|
|||||||
# if defined(__SWITCH__)
|
# if defined(__SWITCH__)
|
||||||
# include <switch.h>
|
# include <switch.h>
|
||||||
# elif defined(_WIN32)
|
# elif defined(_WIN32)
|
||||||
#include <windows.h>
|
# include <vector>
|
||||||
|
# include <windows.h>
|
||||||
# else
|
# else
|
||||||
# include <sys/mman.h>
|
# include <sys/mman.h>
|
||||||
# include <sys/stat.h>
|
# include <sys/stat.h>
|
||||||
|
Reference in New Issue
Block a user