MCPcopy Create free account
hub / github.com/Snapchat/djinni / operator|

Function operator|

test-suite/generated-src/cpp/empty_flags.hpp:14–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12 ALL = 0,
13};
14constexpr empty_flags operator|(empty_flags lhs, empty_flags rhs) noexcept {
15 return static_cast<empty_flags>(static_cast<int32_t>(lhs) | static_cast<int32_t>(rhs));
16}
17constexpr empty_flags& operator|=(empty_flags& lhs, empty_flags rhs) noexcept {
18 return lhs = lhs | rhs;
19}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected