| 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); |
| 933 | } |
| 934 | } // namespace bitwise |
| 935 | template <typename Enum> |
| 936 | static inline void addFlag(Enum e, base::type::EnumType* flag) { |
nothing calls this directly
no outgoing calls
no test coverage detected