From 5b99b41a44bc4548de88a5780660c8a7c7f5b476 Mon Sep 17 00:00:00 2001 From: Peter Conrad Date: Sat, 10 Nov 2018 21:25:56 +0100 Subject: [PATCH] Added missing include --- src/thread/thread.cpp | 2 ++ tests/thread/parallel_tests.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/thread/thread.cpp b/src/thread/thread.cpp index e8cd5de..f1c1e99 100644 --- a/src/thread/thread.cpp +++ b/src/thread/thread.cpp @@ -4,6 +4,8 @@ #include #include "thread_d.hpp" +#include + #if defined(_MSC_VER) && !defined(NDEBUG) # include const DWORD MS_VC_EXCEPTION=0x406D1388; diff --git a/tests/thread/parallel_tests.cpp b/tests/thread/parallel_tests.cpp index ddd04ed..7da4c7b 100644 --- a/tests/thread/parallel_tests.cpp +++ b/tests/thread/parallel_tests.cpp @@ -33,6 +33,8 @@ #include #include +#include + struct thread_config { thread_config() { for( int i = 0; i < boost::unit_test::framework::master_test_suite().argc - 1; ++i )