From 2c914b9b8f0cc7486411baf02b7c86fcc6993548 Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Mon, 21 Sep 2015 18:26:32 +0200 Subject: [PATCH] common:FastFormatString: remove unimplemented m_Length --- common/include/Utilities/StringHelpers.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/common/include/Utilities/StringHelpers.h b/common/include/Utilities/StringHelpers.h index 874db63973..c0ec12937f 100644 --- a/common/include/Utilities/StringHelpers.h +++ b/common/include/Utilities/StringHelpers.h @@ -145,7 +145,6 @@ class FastFormatAscii protected: ScopedAlignedAlloc* 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(); }