Fix build on some environments.

This commit is contained in:
Night Owl 2017-04-02 01:47:56 +05:00
parent ad44c62154
commit 8250d355f5
1 changed files with 7 additions and 0 deletions

View File

@ -77,6 +77,13 @@ void count_if(InputIterator first, InputIterator last, Predicate pred,
while (first != last)
if (pred(*first++)) ++n;
}
#ifndef min
#define min(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef max
#define max(a,b) (((a) > (b)) ? (a) : (b))
#endif
/*
template<class _II, class _OI, class _Uop> inline
_OI transform(_II _F, _II _L, _OI _X, _Uop _U)