mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 00:15:06 +01:00
packet: Simplify operator bool overload
Previously this would cause a -Wnull-conversion warning
This commit is contained in:
parent
dc5d7a802f
commit
0a988e07cb
@ -63,7 +63,7 @@ bool Packet::EndOfPacket() const {
|
||||
}
|
||||
|
||||
Packet::operator bool() const {
|
||||
return is_valid ? &Packet::CheckSize : nullptr;
|
||||
return is_valid;
|
||||
}
|
||||
|
||||
Packet& Packet::operator>>(bool& out_data) {
|
||||
|
Loading…
Reference in New Issue
Block a user