(svn r19477) -Fix (r1946x): removed a few too functions including the copy constructor

This commit is contained in:
yexo
2010-03-19 22:46:22 +00:00
parent aab8849661
commit f439b5767a
2 changed files with 23 additions and 0 deletions

View File

@@ -56,6 +56,15 @@ struct CStrA : public CBlobT<char>
}
}
/** Append another CStrA. */
FORCEINLINE void Append(const CStrA &src)
{
if (src.Length() > 0) {
base::AppendRaw(src);
base::FixTail();
}
}
/** Assignment from C string. */
FORCEINLINE CStrA &operator = (const char *src)
{