1
0

Enable C++17 in build

This commit is contained in:
Peter Bell
2020-05-09 16:51:54 +01:00
committed by peterbell10
parent e6634ed26c
commit 1123c95cf2
11 changed files with 41 additions and 35 deletions

View File

@@ -83,7 +83,7 @@ public:
{
if (m_Array == nullptr)
{
m_Array.reset(new T[m_Size]);
m_Array.reset(new T[ToUnsigned(m_Size)]);
}
return m_Array.get();
}