PIString and PIChar fixes 2

This commit is contained in:
Andrey
2022-03-25 14:07:37 +03:00
parent 649850a1ba
commit 0ad6ca6602
2 changed files with 2 additions and 2 deletions

View File

@@ -68,7 +68,7 @@ inline PIString StdWString2PIString(const std::wstring & v) {
PIString s;
uint l = v.size();
for (uint i = 0; i < l; ++i) {
s.push_back(v[i]);
s.push_back(PIChar(v[i]));
}
return s;
}