Move additional includes out of the FileSys namespace.

This commit is contained in:
Robert Godward 2025-05-20 10:20:10 -04:00 committed by Rachael Alexanderson
commit 30a7ccb7da

View file

@ -48,6 +48,11 @@
#include <fnmatch.h>
#include <dirent.h>
#else
#include <windows.h>
#include <direct.h>
#endif
namespace FileSys {
@ -202,9 +207,6 @@ static size_t FS_GetFileSize(findstate_t* handle, const char* pathname)
#else
#include <windows.h>
#include <direct.h>
std::wstring toWide(const char* str)
{
int len = (int)strlen(str);