[*] Where'd my IsEmpty() go during refactoring?
This commit is contained in:
parent
ac467734a0
commit
ed2b956b38
@ -119,6 +119,12 @@ namespace Aurora::Memory
|
||||
return !IsEmpty() && !HasStreamError();
|
||||
}
|
||||
|
||||
|
||||
bool ByteBuffer::IsEmpty() const
|
||||
{
|
||||
return !length || !base;
|
||||
}
|
||||
|
||||
ByteBuffer &ByteBuffer::operator =(ByteBuffer && other)
|
||||
{
|
||||
Reset();
|
||||
|
Loading…
Reference in New Issue
Block a user