summaryrefslogtreecommitdiff
path: root/src/common/utils2.hpp
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2012-12-24 14:45:25 -0800
committerBen Longbons <b.r.longbons@gmail.com>2012-12-24 14:45:25 -0800
commitae30173d71d3bfc8514dbe70b6c90c9a3324b8fc (patch)
treed39e9d0229c9c7155b5fa8f5342ffca7572bbe92 /src/common/utils2.hpp
parenta1a02150d710df2838060445b9ad447689538985 (diff)
downloadtmwa-ae30173d71d3bfc8514dbe70b6c90c9a3324b8fc.tar.gz
tmwa-ae30173d71d3bfc8514dbe70b6c90c9a3324b8fc.tar.bz2
tmwa-ae30173d71d3bfc8514dbe70b6c90c9a3324b8fc.tar.xz
tmwa-ae30173d71d3bfc8514dbe70b6c90c9a3324b8fc.zip
Add cxxstdio, bump license to gpl3+
Diffstat (limited to 'src/common/utils2.hpp')
-rw-r--r--src/common/utils2.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/common/utils2.hpp b/src/common/utils2.hpp
index aa97959..7b2bc4a 100644
--- a/src/common/utils2.hpp
+++ b/src/common/utils2.hpp
@@ -1,5 +1,5 @@
-// included by utils.hpp as a porting aid.
-// Eventually it will be promoted to one or more normal headers.
+#ifndef UTILS2_HPP
+#define UTILS2_HPP
#include <iterator>
#include <type_traits>
@@ -199,3 +199,5 @@ typename std::common_type<A, B>::type max(A a, B b)
{
return b < a ? a : b;
}
+
+#endif // UTILS2_HPP