Add ! operator

This commit is contained in:
BogDan Vatra 2016-06-01 10:05:27 +03:00
parent 0b0cf58f24
commit 038ea7c1d3
1 changed files with 4 additions and 0 deletions

View File

@ -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