diff options
author | rtk0c <[email protected]> | 2021-08-21 19:12:02 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-08-21 19:12:02 -0700 |
commit | f7abb9021e071abee27b0fba2c1ffe989be2003e (patch) | |
tree | ac66ce9cdb01decf0b735ab0fd54037c6882c8d6 /core/src/Utils/IO/DataStream.cpp | |
parent | 16539032ceec2746aa3778b1c5db9e4485d274d0 (diff) |
DataArchive system which saves in native endian (for better performance working with local files), but is also able to load in any endian depending on archive's header information
Diffstat (limited to 'core/src/Utils/IO/DataStream.cpp')
-rw-r--r-- | core/src/Utils/IO/DataStream.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/src/Utils/IO/DataStream.cpp b/core/src/Utils/IO/DataStream.cpp index 95e0b09..4880901 100644 --- a/core/src/Utils/IO/DataStream.cpp +++ b/core/src/Utils/IO/DataStream.cpp @@ -14,8 +14,6 @@ DataStream::DataStream(std::fstream stream) { } -DataStream::~DataStream() = default; - std::endian DataStream::GetEndianness() const { return mEndian; |