diff options
Diffstat (limited to 'src/resources/mstack.h')
-rw-r--r-- | src/resources/mstack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resources/mstack.h b/src/resources/mstack.h index f8a49af49..2fcf558a2 100644 --- a/src/resources/mstack.h +++ b/src/resources/mstack.h @@ -28,7 +28,7 @@ template<typename T> struct MStack final { - explicit MStack(const size_t maxSize) : + constexpr2 explicit MStack(const size_t maxSize) : mStack(new T[maxSize]), mMaxSize(maxSize), mPointer(mStack - 1), |