From 967e92f224f87e817dc0958f151ccf030233a558 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 a32b79d9..38a284be 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*/)