MCPcopy Create free account
hub / github.com/N64Recomp/N64Recomp / operator&

Function operator&

include/recompiler/context.h:188–188  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

186 Force = 1 << 0,
187 };
188 inline ReplacementFlags operator&(ReplacementFlags lhs, ReplacementFlags rhs) { return ReplacementFlags(uint32_t(lhs) & uint32_t(rhs)); }
189 inline ReplacementFlags operator|(ReplacementFlags lhs, ReplacementFlags rhs) { return ReplacementFlags(uint32_t(lhs) | uint32_t(rhs)); }
190
191 struct FunctionReplacement {

Callers

nothing calls this directly

Calls 2

ReplacementFlagsEnum · 0.85
HookFlagsEnum · 0.85

Tested by

no test coverage detected