From 30a7ccb7da07074e26cb436b450a21d893690619 Mon Sep 17 00:00:00 2001 From: Robert Godward <3904713+RCGodward@users.noreply.github.com> Date: Tue, 20 May 2025 10:20:10 -0400 Subject: [PATCH] Move additional includes out of the FileSys namespace. --- src/common/filesystem/source/fs_findfile.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/common/filesystem/source/fs_findfile.cpp b/src/common/filesystem/source/fs_findfile.cpp index e3d515ab1..3d176af55 100644 --- a/src/common/filesystem/source/fs_findfile.cpp +++ b/src/common/filesystem/source/fs_findfile.cpp @@ -48,6 +48,11 @@ #include #include +#else + +#include +#include + #endif namespace FileSys { @@ -202,9 +207,6 @@ static size_t FS_GetFileSize(findstate_t* handle, const char* pathname) #else -#include -#include - std::wstring toWide(const char* str) { int len = (int)strlen(str);