From b91e4747ceded6e8585e5c9e91f39930b02f9c56 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Tue, 25 Sep 2018 18:25:26 +0100 Subject: [PATCH] Move header dependencies around - to try to fix a clang-3.x issue with ::gets not found when compiling std lib header. --- example/static_assert_example_2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/static_assert_example_2.cpp b/example/static_assert_example_2.cpp index a32b79d..38a284b 100644 --- a/example/static_assert_example_2.cpp +++ b/example/static_assert_example_2.cpp @@ -5,11 +5,11 @@ // See http://www.boost.org for most recent version including documentation. +#include +#include #include #include #include -#include -#include template RandomAccessIterator foo(RandomAccessIterator from, RandomAccessIterator /*to*/)