Add ! operator
This commit is contained in:
parent
0b0cf58f24
commit
038ea7c1d3
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue