mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
...
This commit is contained in:
@ -34,7 +34,8 @@
|
||||
|
||||
#include <string>
|
||||
#include <algorithm>
|
||||
#include "./Types.h"
|
||||
|
||||
#include "Types.h"
|
||||
|
||||
namespace NSStringUtils
|
||||
{
|
||||
@ -50,7 +51,7 @@ namespace NSStringUtils
|
||||
size_t m_lSizeCur;
|
||||
|
||||
public:
|
||||
CStringBuilderA()
|
||||
CStringBuilderA()
|
||||
{
|
||||
m_pData = NULL;
|
||||
m_lSize = 0;
|
||||
@ -58,7 +59,7 @@ namespace NSStringUtils
|
||||
m_pDataCur = m_pData;
|
||||
m_lSizeCur = m_lSize;
|
||||
}
|
||||
~CStringBuilderA()
|
||||
~CStringBuilderA()
|
||||
{
|
||||
if (NULL != m_pData)
|
||||
free(m_pData);
|
||||
|
||||
Reference in New Issue
Block a user