summaryrefslogtreecommitdiff
path: root/src/misc/str.hpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-03-19 20:05:49 +0000
committeryexo <yexo@openttd.org>2010-03-19 20:05:49 +0000
commit767259853b1ef6a90ddcb2e4e1660780a1e507b0 (patch)
tree0fc84babfd433137ed40c8cc4a0da756fd361df3 /src/misc/str.hpp
parent0d29c5aff24b5eb0c7c535af6b38a577f73d1c6b (diff)
downloadopenttd-767259853b1ef6a90ddcb2e4e1660780a1e507b0.tar.xz
(svn r19469) -Codechange: remove unused functions from Blob (skidd13)
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)
{