From 80b737eeb287e496f426f3cfad421f01cecf304e Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Thu, 1 Nov 2018 20:58:21 +0100 Subject: [PATCH] TBB: C++17 fix --- src/tbb/tbb_misc.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/tbb/tbb_misc.cpp b/src/tbb/tbb_misc.cpp index 854947e..904fa9f 100644 --- a/src/tbb/tbb_misc.cpp +++ b/src/tbb/tbb_misc.cpp @@ -21,6 +21,9 @@ // Source file for miscellaneous entities that are infrequently referenced by // an executing program. +#if defined(_MSC_VER) +# include +#endif #include "tbb/tbb_stddef.h" #include "tbb_assert_impl.h" // Out-of-line TBB assertion handling routines are instantiated here. #include "tbb/tbb_exception.h"