| 12 | ALL = 0, |
| 13 | }; |
| 14 | constexpr 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 | } |
| 17 | constexpr empty_flags& operator|=(empty_flags& lhs, empty_flags rhs) noexcept { |
| 18 | return lhs = lhs | rhs; |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected