MCPcopy Create free account
hub / github.com/Xtra-Computing/thundersvm / removeFlag

Function removeFlag

include/thundersvm/util/log.h:940–942  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

938 }
939 template <typename Enum>
940 static inline void removeFlag(Enum e, base::type::EnumType* flag) {
941 *flag = base::utils::bitwise::Not<Enum>(e, *flag);
942 }
943 template <typename Enum>
944 static inline bool hasFlag(Enum e, base::type::EnumType flag) {
945 return base::utils::bitwise::And<Enum>(e, flag) > 0x0;

Callers 3

removeFlagMethod · 0.85
~ScopedAddFlagMethod · 0.85
ScopedRemoveFlagMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected