mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-09 22:38:06 -05:00
Use static variable for void* PTR_INSERT and PTR_FOLLOWING instead of constexpr because thats incompatible with g++
This commit is contained in:
@ -9,8 +9,8 @@
|
||||
class IZoneOutputStream : public IZoneStream
|
||||
{
|
||||
public:
|
||||
static constexpr void* PTR_FOLLOWING = reinterpret_cast<void*>(-1);
|
||||
static constexpr void* PTR_INSERT = reinterpret_cast<void*>(-2);
|
||||
inline static void* const PTR_FOLLOWING = reinterpret_cast<void*>(-1);
|
||||
inline static void* const PTR_INSERT = reinterpret_cast<void*>(-2);
|
||||
|
||||
virtual void Align(int alignTo) = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user