File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -260,15 +260,15 @@ inline const char* flatbuffers_version_string() {
260260 inline FLATBUFFERS_CONSTEXPR_CPP11 E operator ~ (E lhs){\
261261 return E (~T (lhs));\
262262 }\
263- inline FLATBUFFERS_CONSTEXPR_CPP11 E operator |= (E &lhs, E rhs){\
263+ inline FLATBUFFERS_CONSTEXPR_CPP14 E operator |= (E &lhs, E rhs){\
264264 lhs = lhs | rhs;\
265265 return lhs;\
266266 }\
267- inline FLATBUFFERS_CONSTEXPR_CPP11 E operator &= (E &lhs, E rhs){\
267+ inline FLATBUFFERS_CONSTEXPR_CPP14 E operator &= (E &lhs, E rhs){\
268268 lhs = lhs & rhs;\
269269 return lhs;\
270270 }\
271- inline FLATBUFFERS_CONSTEXPR_CPP11 E operator ^= (E &lhs, E rhs){\
271+ inline FLATBUFFERS_CONSTEXPR_CPP14 E operator ^= (E &lhs, E rhs){\
272272 lhs = lhs ^ rhs;\
273273 return lhs;\
274274 }\
You can’t perform that action at this time.
0 commit comments