aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--zencore/include/zencore/iobuffer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zencore/include/zencore/iobuffer.h b/zencore/include/zencore/iobuffer.h
index 3e24b51a0..280f1cb68 100644
--- a/zencore/include/zencore/iobuffer.h
+++ b/zencore/include/zencore/iobuffer.h
@@ -177,13 +177,13 @@ protected:
enum Flags
{
- kIsOwnedByThis = 1 << 0,
+ kIsNull = 1 << 0, // This is a null IoBuffer
kIsMutable = 1 << 1,
kIsExtended = 1 << 2, // Is actually a SharedBufferExtendedCore
kIsMaterialized = 1 << 3, // Data pointers are valid
kLowLevelAlloc = 1 << 4, // Using direct memory allocation
kIsWholeFile = 1 << 5, // References an entire file
- kIsNull = 1 << 7, // This is a null IoBuffer
+ kIsOwnedByThis = 1 << 7,
// Note that we have some extended flags defined below
// so not all bits are available to use here