PICout::writePIString -> PICout::write

This commit is contained in:
2022-05-05 10:35:15 +03:00
parent 6995c25613
commit d1f7065c8a
3 changed files with 7 additions and 7 deletions

View File

@@ -1669,7 +1669,7 @@ PIString versionNormalize(const PIString & v) {
PICout operator <<(PICout s, const PIString & v) {
s.space();
s.quote();
s.writePIString(v);
s.write(v);
s.quote();
return s;
}