summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2016-09-16 12:50:40 +0200
committerDennis Brentjes <d.brentjes@gmail.com>2016-09-16 12:50:40 +0200
commite2f05c7f2eb6a7e090a2deeddfc3dcb8d92234f4 (patch)
tree8e4510930f24d98d4573247ffde09238c4942e57
parentc6465bd8c6aca006bc7e980d5db08518659bae3c (diff)
downloadopenwar-e2f05c7f2eb6a7e090a2deeddfc3dcb8d92234f4.tar.gz
openwar-e2f05c7f2eb6a7e090a2deeddfc3dcb8d92234f4.tar.bz2
openwar-e2f05c7f2eb6a7e090a2deeddfc3dcb8d92234f4.zip
Fixes the build on clang.
-rw-r--r--binparse/output.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/binparse/output.hpp b/binparse/output.hpp
index 2cf9f63..26dffe5 100644
--- a/binparse/output.hpp
+++ b/binparse/output.hpp
@@ -125,7 +125,7 @@ std::ostream& operator<<(otreestream& os, T const& t) {
return os;
}
-template <typename T, typename std::enable_if<boost::fusion::traits::is_sequence<T>::value>::type* = nullptr>
+template <typename T, typename std::enable_if<boost::fusion::traits::is_sequence<T>::value>::type*>
std::ostream& operator<<(std::ostream& os, T const& t) {
typedef typename build_indices<boost::fusion::result_of::size<T>::value>::type indices;