fix(file): added missing Read and ReadP calls on Windows

This commit is contained in:
phaneron 2025-03-16 02:23:00 -04:00
parent d78609cceb
commit 2e090457f5
2 changed files with 2 additions and 0 deletions

View file

@ -2,6 +2,7 @@
#include "bc/file/Defines.hpp"
#if defined(WHOA_SYSTEM_LINUX) || defined(WHOA_SYSTEM_MAC)
#include "bc/system/file/System_File.hpp"
#include "bc/system/file/Stacked.hpp"
#include "bc/Debug.hpp"
#include "bc/File.hpp"

View file

@ -1,5 +1,6 @@
#if defined(WHOA_SYSTEM_WIN)
#include "bc/system/file/System_File.hpp"
#include "bc/system/file/Stacked.hpp"
#include "bc/string/QuickFormat.hpp"
#include "bc/File.hpp"