| 53 | constexpr uint32_t OpenFlagRWMask = 0x3; // mask for Read Write mode |
| 54 | |
| 55 | static inline OpenFlag operator | (OpenFlag left, OpenFlag right) { |
| 56 | return static_cast<OpenFlag>(static_cast<uint32_t>(left) | static_cast<uint32_t>(right)); |
| 57 | } |
| 58 | |
| 59 | static inline bool operator & (OpenFlag left, OpenFlag right) { |
| 60 | return ((static_cast<uint32_t>(left) & static_cast<uint32_t>(right)) != 0); |
nothing calls this directly
no outgoing calls
no test coverage detected