26#ifndef QB_UTILS_BRANCH_HINTS_H
27#define QB_UTILS_BRANCH_HINTS_H
51 return __builtin_expect(expr,
true);
78 return __builtin_expect(expr,
false);
bool unlikely(bool expr)
Hint for branch prediction when a condition is expected to be false.
Definition branch_hints.h:76
bool likely(bool expr)
Hint for branch prediction when a condition is expected to be true.
Definition branch_hints.h:49