This commit is contained in:
ElenaSubbotina
2017-01-16 17:21:35 +03:00
parent 6e409d2f7e
commit 78b051c999
98 changed files with 4077 additions and 11928 deletions

View File

@ -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);