version 3.14.0

PIBinaryStream::wasReadError() method, remove incomplete read asserts
This commit is contained in:
2023-08-30 12:18:04 +03:00
parent c86ec0ae82
commit 0907a3eb13
5 changed files with 118 additions and 48 deletions

View File

@@ -1820,6 +1820,7 @@ BINARY_STREAM_WRITE(PIString) {
//! \~russian Оператор извлечения.
BINARY_STREAM_READ(PIString) {
s >> v.d;
if (s.wasReadError()) v.clear();
return s;
}