1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-23 02:27:12 +02:00

Backported latest fixes and improvements from the Squirrel repository.

This commit is contained in:
Sandu Liviu Catalin
2018-10-25 20:04:52 +03:00
parent 2b9c8f6550
commit 7cdca09d50
18 changed files with 347 additions and 245 deletions

View File

@ -88,7 +88,7 @@ struct SQBlob : public SQStream
return 0;
}
bool IsValid() {
return _buf?true:false;
return _size == 0 || _buf?true:false;
}
bool EOS() {
return _ptr == _size;