summaryrefslogtreecommitdiff
path: root/src/misc/array.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc/array.hpp')
-rw-r--r--src/misc/array.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/misc/array.hpp b/src/misc/array.hpp
index e4cf19408..78dd0098f 100644
--- a/src/misc/array.hpp
+++ b/src/misc/array.hpp
@@ -35,7 +35,7 @@ protected:
SubArray& s = data[super_size - 1];
if (!s.IsFull()) return s;
}
- return data.AppendC();
+ return *data.AppendC();
}
public:
@@ -56,9 +56,9 @@ public:
/** return true if array is full */
FORCEINLINE bool IsFull() { return data.IsFull() && data[N - 1].IsFull(); }
/** allocate but not construct new item */
- FORCEINLINE T& Append() { return FirstFreeSubArray().Append(); }
+ FORCEINLINE T *Append() { return FirstFreeSubArray().Append(); }
/** allocate and construct new item */
- FORCEINLINE T& AppendC() { return FirstFreeSubArray().AppendC(); }
+ FORCEINLINE T *AppendC() { return FirstFreeSubArray().AppendC(); }
/** indexed access (non-const) */
FORCEINLINE T& operator [] (uint index)
{