| Index: core/src/fxcrt/fx_basic_buffer.cpp
|
| diff --git a/core/src/fxcrt/fx_basic_buffer.cpp b/core/src/fxcrt/fx_basic_buffer.cpp
|
| index 9578653019593a2325d1b871e1eb9bcd44d8d015..f623d995c783d7a517978b3a11e56e2950435f1a 100644
|
| --- a/core/src/fxcrt/fx_basic_buffer.cpp
|
| +++ b/core/src/fxcrt/fx_basic_buffer.cpp
|
| @@ -19,6 +19,8 @@ CFX_BinaryBuf::CFX_BinaryBuf(FX_STRSIZE size)
|
| m_pBuffer.reset(FX_Alloc(uint8_t, size));
|
| }
|
|
|
| +CFX_BinaryBuf::~CFX_BinaryBuf() {}
|
| +
|
| void CFX_BinaryBuf::Delete(int start_index, int count) {
|
| if (!m_pBuffer || start_index < 0 || count < 0 || count > m_DataSize ||
|
| start_index > m_DataSize - count) {
|
| @@ -364,6 +366,8 @@ FX_DWORD CFX_BitStream::GetBits(FX_DWORD nBits) {
|
| CFX_FileBufferArchive::CFX_FileBufferArchive()
|
| : m_Length(0), m_pFile(nullptr) {}
|
|
|
| +CFX_FileBufferArchive::~CFX_FileBufferArchive() {}
|
| +
|
| void CFX_FileBufferArchive::Clear() {
|
| m_Length = 0;
|
| m_pBuffer.reset();
|
|
|