picout fix

This commit is contained in:
2022-04-13 22:46:53 +03:00
parent 2ab2614ab4
commit c7e67b309e
3 changed files with 6 additions and 5 deletions

View File

@@ -470,7 +470,7 @@ PIString & PIString::operator +=(const wchar_t * str) {
PIString & PIString::operator +=(const PIString & str) {
*((PIDeque<PIChar>*)this) << *((PIDeque<PIChar>*)&str);
PIDeque<PIChar>::append(*(const PIDeque<PIChar>*)&str);
return *this;
}