mirror of
https://github.com/NoelFB/blah.git
synced 2024-11-29 17:08:56 +08:00
StackVector had a typo that meant its buffer was too big
This commit is contained in:
parent
cea39987b8
commit
c80188cfd0
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user