From b014ca072970973164e0b3d244fbd8863dff2738 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Tue, 21 Apr 2015 15:09:19 -0700 Subject: Kill CFX_StringBufTemplate. It's unused. R=thestig@chromium.org Review URL: https://codereview.chromium.org/1098203002 --- core/src/fxcrt/fx_basic_bstring.cpp | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'core/src') diff --git a/core/src/fxcrt/fx_basic_bstring.cpp b/core/src/fxcrt/fx_basic_bstring.cpp index 895c8e560e..ea9ca85021 100644 --- a/core/src/fxcrt/fx_basic_bstring.cpp +++ b/core/src/fxcrt/fx_basic_bstring.cpp @@ -1137,28 +1137,3 @@ CFX_ByteString CFX_ByteString::FormatFloat(FX_FLOAT d, int precision) FX_STRSIZE len = FX_ftoa(d, buf); return CFX_ByteString(buf, len); } -void CFX_StringBufBase::Copy(FX_BSTR str) -{ - m_Size = str.GetLength(); - if (m_Size > m_Limit) { - m_Size = m_Limit; - } - FX_CHAR* pBuffer = (FX_CHAR*)(this + 1); - FXSYS_memcpy32(pBuffer, str.GetPtr(), m_Size); -} -void CFX_StringBufBase::Append(FX_BSTR str) -{ - int len = str.GetLength(); - if (len > m_Limit - m_Size) { - len = m_Limit - m_Size; - } - FX_CHAR* pBuffer = (FX_CHAR*)(this + 1); - FXSYS_memcpy32(pBuffer + m_Size, str.GetPtr(), len); - m_Size += len; -} -void CFX_StringBufBase::Append(int i, FX_DWORD flags) -{ - char buf[32]; - int len = _Buffer_itoa(buf, i, flags); - Append(CFX_ByteStringC(buf, len)); -} -- cgit v1.2.3