mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-03-12 05:22:55 +00:00
Fix build on some environments.
This commit is contained in:
parent
ad44c62154
commit
8250d355f5
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user