18 #ifndef _LOG4CXX_HELPERS_STRICTMATH_H 19 #define _LOG4CXX_HELPERS_STRICTMATH_H 21 #include <log4cxx/log4cxx.h> 34 template<
typename _type>
static inline const _type&
35 minimum(
const _type& a,
const _type& b)
37 return (a < b) ? a : b;
40 template<
typename _type>
static inline const _type&
41 maximum(
const _type& a,
const _type& b)
43 return (a > b) ? a : b;
49 #endif //_LOG4CXX_HELPERS_STRICTMATH_H The class StrictMath contains methods for performing basic numeric operations.
Definition: strictmath.h:31
Definition: appender.h:33