| Index: core/include/fxcrt/fx_basic.h
|
| diff --git a/core/include/fxcrt/fx_basic.h b/core/include/fxcrt/fx_basic.h
|
| index 275653ef9ecfbc8bc69c4cab26327ab057e061a9..bd53d9e7a4123e10754dec314e76eefacb916fb0 100644
|
| --- a/core/include/fxcrt/fx_basic.h
|
| +++ b/core/include/fxcrt/fx_basic.h
|
| @@ -773,32 +773,6 @@ private:
|
| DataType m_Data[FixedSize];
|
| DataType* m_pData;
|
| };
|
| -template <class DataType>
|
| -class CFX_TempBuf
|
| -{
|
| -public:
|
| - CFX_TempBuf(int size)
|
| - {
|
| - m_pData = FX_Alloc(DataType, size);
|
| - }
|
| - ~CFX_TempBuf()
|
| - {
|
| - if (m_pData) {
|
| - FX_Free(m_pData);
|
| - }
|
| - }
|
| - DataType& operator[](int i)
|
| - {
|
| - FXSYS_assert(m_pData != NULL);
|
| - return m_pData[i];
|
| - }
|
| - operator DataType*()
|
| - {
|
| - return m_pData;
|
| - }
|
| -private:
|
| - DataType* m_pData;
|
| -};
|
| class CFX_MapPtrToPtr
|
| {
|
| protected:
|
|
|