24 #if defined(_APPLE_) || defined(_MACH_) 28 #if defined(_WIN32) || defined(WIN32) || defined(__CYGWIN__) || defined(__MINGW32__) 38 #define SHOW_MODE_ONELINE 45 template <
typename T1,
typename T2>
46 inline T1
const&
min (T1
const& a, T2
const& b)
48 return (((a)<(b))?(a):(b));
51 template <
typename T1,
typename T2>
52 inline T1
const&
max (T1
const& a, T2
const& b)
54 return (((a)>(b))?(a):(b));
T1 const & max(T1 const &a, T2 const &b)
Returns maximal of two arguments.
Definition: macros.h:52
Namespace of C++ standard library.
T1 const & min(T1 const &a, T2 const &b)
Returns minimal of two arguments.
Definition: macros.h:46