common:FastFormatString: remove unimplemented m_Length

This commit is contained in:
Gregory Hainaut 2015-09-21 18:26:32 +02:00
parent a6c29a5061
commit 2c914b9b8f
1 changed files with 0 additions and 2 deletions

View File

@ -145,7 +145,6 @@ class FastFormatAscii
protected:
ScopedAlignedAlloc<char,16>* m_dest;
bool m_deleteDest;
uint m_Length;
public:
FastFormatAscii();
@ -155,7 +154,6 @@ public:
void Clear();
bool IsEmpty() const;
uint Length() const { return m_Length; }
const char* c_str() const { return m_dest->GetPtr(); }
operator const char*() const { return m_dest->GetPtr(); }