aboutsummaryrefslogtreecommitdiff
path: root/core/src/Utils/IO/FileStream.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2021-11-12 13:34:50 -0800
committerrtk0c <[email protected]>2021-11-12 13:34:50 -0800
commit4932f36da4fab3fc8965822bba473cbd20f7f405 (patch)
tree7317eaacb0d64de183a2bdce8e07d7120c29e5de /core/src/Utils/IO/FileStream.hpp
parent816bbe7993adf4a41ace7bae06bfe6a5921308b8 (diff)
Fix compile errors under MSVC, remove PLATFORM_* macros in favor of compiler builtin macros, and add win32 support to FileStream
Diffstat (limited to 'core/src/Utils/IO/FileStream.hpp')
-rw-r--r--core/src/Utils/IO/FileStream.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/Utils/IO/FileStream.hpp b/core/src/Utils/IO/FileStream.hpp
index 9f5f24a..5b91632 100644
--- a/core/src/Utils/IO/FileStream.hpp
+++ b/core/src/Utils/IO/FileStream.hpp
@@ -18,7 +18,7 @@ struct IoResult
};
ErrorKind Error;
- int32_t SystemError;
+ uint32_t SystemError;
size_t BytesMoved;
};