| 57 | } |
| 58 | |
| 59 | static inline bool operator & (OpenFlag left, OpenFlag right) { |
| 60 | return ((static_cast<uint32_t>(left) & static_cast<uint32_t>(right)) != 0); |
| 61 | } |
| 62 | |
| 63 | static inline OpenFlag operator & (OpenFlag left, uint32_t right) { |
| 64 | return static_cast<OpenFlag>(static_cast<uint32_t>(left) & right); |
nothing calls this directly
no outgoing calls
no test coverage detected