| 925 | } |
| 926 | template <typename Enum> |
| 927 | static inline base::type::EnumType Not(Enum e, base::type::EnumType flag) { |
| 928 | return static_cast<base::type::EnumType>(flag) & ~(static_cast<base::type::EnumType>(e)); |
| 929 | } |
| 930 | template <typename Enum> |
| 931 | static inline base::type::EnumType Or(Enum e, base::type::EnumType flag) { |
| 932 | return static_cast<base::type::EnumType>(flag) | static_cast<base::type::EnumType>(e); |
nothing calls this directly
no outgoing calls
no test coverage detected