summaryrefslogtreecommitdiff
path: root/src/compat/alg.hpp
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2014-04-15 20:05:17 -0700
committerBen Longbons <b.r.longbons@gmail.com>2014-04-19 20:09:35 -0700
commitceeda2e337077b2edaf1af09cc4df2c30e8205a1 (patch)
treeab7a70020e1dcac9ee56531c1c5af9888989f4f3 /src/compat/alg.hpp
parent147c3e9c891c12dbfd39b65ee0f5baddf5f81b14 (diff)
downloadtmwa-ceeda2e337077b2edaf1af09cc4df2c30e8205a1.tar.gz
tmwa-ceeda2e337077b2edaf1af09cc4df2c30e8205a1.tar.bz2
tmwa-ceeda2e337077b2edaf1af09cc4df2c30e8205a1.tar.xz
tmwa-ceeda2e337077b2edaf1af09cc4df2c30e8205a1.zip
Wouldn't it be nice to have some integers too?
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