PIString/PIChar explicit, support char16_t

This commit is contained in:
2023-07-06 19:59:26 +03:00
parent 8ad2503c5a
commit 61f1a34c14
11 changed files with 132 additions and 73 deletions

View File

@@ -348,7 +348,7 @@ PIString PIByteArray::toHex() const {
else
hexData[i * 2 + 1] = (j + 'a' - 10);
}
return PIString(hex);
return PIString::fromAscii(hex);
}