mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-15 08:48:52 +00:00
Add ! operator
This commit is contained in:
@@ -1509,6 +1509,10 @@ volatile __attribute__((weak)) const char *flatbuffer_version_string =
|
|||||||
inline E operator ^= (E &lhs, E rhs){\
|
inline E operator ^= (E &lhs, E rhs){\
|
||||||
lhs = lhs ^ rhs;\
|
lhs = lhs ^ rhs;\
|
||||||
return lhs;\
|
return lhs;\
|
||||||
|
}\
|
||||||
|
inline bool operator !(E rhs) \
|
||||||
|
{\
|
||||||
|
return !bool(T(rhs)); \
|
||||||
}
|
}
|
||||||
/// @endcond
|
/// @endcond
|
||||||
} // namespace flatbuffers
|
} // namespace flatbuffers
|
||||||
|
|||||||
Reference in New Issue
Block a user