StackVector had a typo that meant its buffer was too big

This commit is contained in:
Noel Berry 2020-11-23 01:32:06 -08:00
parent cea39987b8
commit c80188cfd0

View File

@ -11,7 +11,7 @@ namespace Blah
class StackVector class StackVector
{ {
private: private:
char* m_buffer[sizeof(T) * Capacity]; char m_buffer[sizeof(T) * Capacity];
int m_count; int m_count;
public: public: