summaryrefslogtreecommitdiff
path: root/src/misc/str.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc/str.hpp')
-rw-r--r--src/misc/str.hpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/misc/str.hpp b/src/misc/str.hpp
index ac3359829..9b5b53a8a 100644
--- a/src/misc/str.hpp
+++ b/src/misc/str.hpp
@@ -56,15 +56,6 @@ struct CStrA : public CBlobT<char>
}
}
- /** Append another CStrA. */
- FORCEINLINE void Append(const CStrA &src)
- {
- if (src.RawSize() > 0) {
- base::AppendRaw(src);
- base::FixTail();
- }
- }
-
/** Assignment from C string. */
FORCEINLINE CStrA &operator = (const char *src)
{