diff options
Diffstat (limited to 'core/fxcrt/cfx_fixedbufgrow.h')
-rw-r--r-- | core/fxcrt/cfx_fixedbufgrow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/cfx_fixedbufgrow.h b/core/fxcrt/cfx_fixedbufgrow.h index b12b710473..55db8b21d1 100644 --- a/core/fxcrt/cfx_fixedbufgrow.h +++ b/core/fxcrt/cfx_fixedbufgrow.h @@ -24,8 +24,8 @@ class CFX_FixedBufGrow { operator DataType*() { return m_pGrowData ? m_pGrowData.get() : m_FixedData; } private: - DataType m_FixedData[FixedSize]; std::unique_ptr<DataType, FxFreeDeleter> m_pGrowData; + DataType m_FixedData[FixedSize]; }; #endif // CORE_FXCRT_CFX_FIXEDBUFGROW_H_ |