Change SmallString::operator{=,+=} to take a StringRef.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79729 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2009-08-22 06:06:46 +00:00
parent 953042b392
commit 39db3439bf

View File

@ -41,13 +41,13 @@ public:
StringRef str() const { return StringRef(this->begin(), this->size()); }
// Extra operators.
const SmallString &operator=(const char *RHS) {
const SmallString &operator=(StringRef RHS) {
this->clear();
return *this += RHS;
}
SmallString &operator+=(const char *RHS) {
this->append(RHS, RHS+strlen(RHS));
SmallString &operator+=(StringRef RHS) {
this->append(RHS.begin(), RHS.end());
return *this;
}
SmallString &operator+=(char C) {