(svn r19469) -Codechange: remove unused functions from Blob (skidd13)

This commit is contained in:
yexo
2010-03-19 20:05:49 +00:00
parent 0d29c5aff2
commit 767259853b
2 changed files with 0 additions and 150 deletions

View File

@@ -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)
{