From a48c0eb49185b524f68ff158bf10bff6805e5437 Mon Sep 17 00:00:00 2001 From: Oliver Kowalke Date: Sat, 27 Feb 2016 20:00:43 +0100 Subject: [PATCH] fix include of headers --- include/boost/fiber/condition_variable.hpp | 1 - src/barrier.cpp | 1 + src/context.cpp | 1 + test/test_condition_mt.cpp | 3 ++- test/test_condition_variable.cpp | 3 ++- test/test_fiber.cpp | 1 + test/test_fss.cpp | 1 + 7 files changed, 8 insertions(+), 3 deletions(-) diff --git a/include/boost/fiber/condition_variable.hpp b/include/boost/fiber/condition_variable.hpp index 47665da2..628680e3 100644 --- a/include/boost/fiber/condition_variable.hpp +++ b/include/boost/fiber/condition_variable.hpp @@ -10,7 +10,6 @@ #include #include #include -#include #include #include diff --git a/src/barrier.cpp b/src/barrier.cpp index 2c0879b1..e6deed87 100644 --- a/src/barrier.cpp +++ b/src/barrier.cpp @@ -6,6 +6,7 @@ #include "boost/fiber/barrier.hpp" +#include #include #include "boost/fiber/exceptions.hpp" diff --git a/src/context.cpp b/src/context.cpp index 21a018a4..b33c0e70 100644 --- a/src/context.cpp +++ b/src/context.cpp @@ -7,6 +7,7 @@ #include "boost/fiber/context.hpp" #include +#include #include #include "boost/fiber/exceptions.hpp" diff --git a/test/test_condition_mt.cpp b/test/test_condition_mt.cpp index 34c3066b..3b86cf6b 100644 --- a/test/test_condition_mt.cpp +++ b/test/test_condition_mt.cpp @@ -6,10 +6,11 @@ // // This test is based on the tests of Boost.Thread -#include #include +#include #include #include +#include #include #include diff --git a/test/test_condition_variable.cpp b/test/test_condition_variable.cpp index 5bcd110b..ee72f5a9 100644 --- a/test/test_condition_variable.cpp +++ b/test/test_condition_variable.cpp @@ -7,10 +7,11 @@ // This test is based on the tests of Boost.Thread #include -#include #include +#include #include #include +#include #include #include diff --git a/test/test_fiber.cpp b/test/test_fiber.cpp index 8929358d..29a3f65b 100644 --- a/test/test_fiber.cpp +++ b/test/test_fiber.cpp @@ -7,6 +7,7 @@ // This test is based on the tests of Boost.Thread #include +#include #include #include diff --git a/test/test_fss.cpp b/test/test_fss.cpp index 561b72b2..14a61cca 100644 --- a/test/test_fss.cpp +++ b/test/test_fss.cpp @@ -6,6 +6,7 @@ // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include +#include #include