mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-12-08 11:08:23 +00:00
Fix CBufferStringGrowable initialization order
This commit is contained in:
parent
924e0d9a67
commit
29e9027679
@ -206,7 +206,7 @@ class CBufferStringGrowable : public CBufferString
|
|||||||
friend class CBufferString;
|
friend class CBufferString;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
CBufferStringGrowable() : m_nAllocated(STACK_ALLOCATION_MARKER | (MAX_SIZE & LENGTH_MASK)), m_nTotalCount(0), m_Memory()
|
CBufferStringGrowable() : m_nTotalCount(0), m_nAllocated(STACK_ALLOCATION_MARKER | (MAX_SIZE & LENGTH_MASK)), m_Memory()
|
||||||
{
|
{
|
||||||
if (AllowHeapAllocation)
|
if (AllowHeapAllocation)
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user