CARB_MAX
Defined in carb/Defines.h
-
CARB_MAX(a, b)
A macro the returns the largest of two values.
Warning
This macro will evaluate parameters more than once! Consider using carb_max() or
std::max.- Parameters
a – The first value.
b – The second value.
- Returns
The largest of
aorb. If the values are equalbwill be returned.