| 49 | |
| 50 | |
| 51 | inline MountFlags operator|(MountFlags a, MountFlags b) { |
| 52 | return static_cast<MountFlags>( |
| 53 | static_cast<std::underlying_type_t<MountFlags>>(a) | |
| 54 | static_cast<std::underlying_type_t<MountFlags>>(b) |
| 55 | ); |
| 56 | } |
| 57 | |
| 58 | inline MountFlags& operator|=(MountFlags& a, MountFlags b) { |
| 59 | a = a | b; |
nothing calls this directly
no outgoing calls
no test coverage detected