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

@@ -44,7 +44,10 @@ public:
//! \~english Assign "device" device
//! \~russian Назначает устройство "device"
void setDevice(PIIODevice * device) { dev = device; }
void setDevice(PIIODevice * device) {
dev = device;
resetReadError();
}
bool binaryStreamAppendImp(const void * d, size_t s) {
if (!dev) return false;