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