mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-12-07 18:48:22 +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;
|
||||
|
||||
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)
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user