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