remove PIString operator <<

This commit is contained in:
Бычков Андрей
2022-07-22 14:34:11 +03:00
parent b4bd6646b4
commit be1ccc4f0a
3 changed files with 18 additions and 16 deletions

View File

@@ -558,7 +558,7 @@ PIString CDCore::pathToString(const PIDeque<int> & p) {
PIString ret;
for (int i = 0; i < p.size_s(); ++i) {
if (!ret.isEmpty()) ret += ".";
ret << p[i];
ret += PIString::fromNumber(p[i]);
}
return ret;
}