Merge pull request #170 from TsudaKageyu/master

Small bug fix in tstring.cpp
This commit is contained in:
Tsuda Kageyu 2013-04-26 01:52:15 -07:00
commit 58765ac40a

View File

@ -709,7 +709,7 @@ String &String::operator=(wchar_t c)
if(d->deref())
delete d;
d = new StringPrivate(1, static_cast<uchar>(c));
d = new StringPrivate(1, c);
return *this;
}