18 #ifndef __SERVICES_INTERNAL_UTILITIES_H__
19 #define __SERVICES_INTERNAL_UTILITIES_H__
29 inline const T & minValue(
const T & a,
const T & b) {
return !(b < a) ? a : b; }
32 inline const T & maxValue(
const T & a,
const T & b) {
return (a < b) ? b : a; }
For more complete information about compiler optimizations, see our Optimization Notice.