summaryrefslogtreecommitdiff
path: root/src/compat/alg.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/compat/alg.hpp')
-rw-r--r--src/compat/alg.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/compat/alg.hpp b/src/compat/alg.hpp
index adf3f3f..f9ed8d2 100644
--- a/src/compat/alg.hpp
+++ b/src/compat/alg.hpp
@@ -21,7 +21,8 @@
# include "../sanity.hpp"
-# include <type_traits>
+# if 0
+# include <type_traits>
template<class A, class B>
@@ -35,5 +36,6 @@ typename std::common_type<A, B>::type max(A a, B b)
{
return b < a ? a : b;
}
+# endif
#endif // TMWA_COMPAT_ALG_HPP