diff options
Diffstat (limited to 'STL/algobase.h')
-rw-r--r-- | STL/algobase.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/STL/algobase.h b/STL/algobase.h index 24c6f7d398f..b3f5fbbb697 100644 --- a/STL/algobase.h +++ b/STL/algobase.h @@ -48,7 +48,6 @@ inline void swap(T& a, T& b) { b = tmp; } -/* template <class T> inline const T& min(const T& a, const T& b) { return b < a ? b : a; @@ -68,7 +67,6 @@ template <class T, class Compare> inline const T& max(const T& a, const T& b, Compare comp) { return comp(a, b) ? b : a; } -*/ template <class InputIterator, class Distance> void __distance(InputIterator first, InputIterator last, Distance& n, |