[pstl] Add missing includes
authorLouis Dionne <ldionne@apple.com>
Fri, 5 Jul 2019 16:05:26 +0000 (16:05 +0000)
committerLouis Dionne <ldionne@apple.com>
Fri, 5 Jul 2019 16:05:26 +0000 (16:05 +0000)
llvm-svn: 365218

15 files changed:
pstl/include/pstl/internal/algorithm_fwd.h
pstl/include/pstl/internal/algorithm_impl.h
pstl/include/pstl/internal/execution_defs.h
pstl/include/pstl/internal/glue_algorithm_defs.h
pstl/include/pstl/internal/glue_execution_defs.h
pstl/include/pstl/internal/glue_memory_defs.h
pstl/include/pstl/internal/glue_numeric_defs.h
pstl/include/pstl/internal/memory_impl.h
pstl/include/pstl/internal/numeric_fwd.h
pstl/include/pstl/internal/parallel_backend.h
pstl/include/pstl/internal/parallel_backend_serial.h
pstl/include/pstl/internal/parallel_backend_tbb.h
pstl/include/pstl/internal/parallel_backend_utils.h
pstl/include/pstl/internal/parallel_impl.h
pstl/include/pstl/internal/unseq_backend_simd.h

index 5165072..2f9f13e 100644 (file)
 #ifndef _PSTL_ALGORITHM_FWD_H
 #define _PSTL_ALGORITHM_FWD_H
 
+#include <iterator>
 #include <type_traits>
 #include <utility>
 
+#include "pstl_config.h"
+
 namespace __pstl
 {
 namespace __internal
index ae0657d..a584088 100644 (file)
 
 #include "execution_impl.h"
 #include "memory_impl.h"
-#include "parallel_backend_utils.h"
 #include "parallel_backend.h"
+#include "parallel_backend_utils.h"
 #include "parallel_impl.h"
+#include "pstl_config.h"
 #include "unseq_backend_simd.h"
 
 namespace __pstl
index 6c028c3..cb9cf69 100644 (file)
@@ -12,6 +12,8 @@
 
 #include <type_traits>
 
+#include "pstl_config.h"
+
 namespace __pstl
 {
 namespace execution
index f037d72..d5e4d4a 100644 (file)
@@ -14,6 +14,7 @@
 #include <iterator>
 
 #include "execution_defs.h"
+#include "pstl_config.h"
 
 namespace std
 {
index be50c8f..b294976 100644 (file)
@@ -13,6 +13,7 @@
 #include <type_traits>
 
 #include "execution_defs.h"
+#include "pstl_config.h"
 
 namespace std
 {
index ba86842..bf32c92 100644 (file)
@@ -11,6 +11,7 @@
 #define _PSTL_GLUE_MEMORY_DEFS_H
 
 #include "execution_defs.h"
+#include "pstl_config.h"
 
 namespace std
 {
index badc478..1a9cd07 100644 (file)
@@ -13,6 +13,7 @@
 #include <iterator>
 
 #include "execution_defs.h"
+#include "pstl_config.h"
 
 namespace std
 {
index 612000b..2140ba9 100644 (file)
@@ -12,6 +12,7 @@
 
 #include <iterator>
 
+#include "pstl_config.h"
 #include "unseq_backend_simd.h"
 
 namespace __pstl
index 30d786f..4d52164 100644 (file)
@@ -13,6 +13,8 @@
 #include <type_traits>
 #include <utility>
 
+#include "pstl_config.h"
+
 namespace __pstl
 {
 namespace __internal
index b78e65b..c18007e 100644 (file)
@@ -10,6 +10,8 @@
 #ifndef _PSTL_PARALLEL_BACKEND_H
 #define _PSTL_PARALLEL_BACKEND_H
 
+#include "pstl_config.h"
+
 #if defined(_PSTL_PAR_BACKEND_SERIAL)
 #    include "parallel_backend_serial.h"
 #elif defined(_PSTL_PAR_BACKEND_TBB)
index bf58abf..5f79f60 100644 (file)
@@ -16,6 +16,8 @@
 #include <numeric>
 #include <utility>
 
+#include "pstl_config.h"
+
 namespace __pstl
 {
 namespace __serial
index 80d4dcc..81b2347 100644 (file)
@@ -14,6 +14,7 @@
 #include <algorithm>
 #include <type_traits>
 
+#include "pstl_config.h"
 #include "parallel_backend_utils.h"
 
 // Bring in minimal required subset of Intel TBB
index 2b865a4..cd4f72b 100644 (file)
@@ -15,6 +15,8 @@
 #include <cassert>
 #include "utils.h"
 
+#include "pstl_config.h"
+
 namespace __pstl
 {
 namespace __par_backend
index eaa47b8..523b925 100644 (file)
@@ -10,6 +10,8 @@
 #ifndef _PSTL_PARALLEL_IMPL_H
 #define _PSTL_PARALLEL_IMPL_H
 
+#include "pstl_config.h"
+
 #include <atomic>
 // This header defines the minimum set of parallel routines required to support Parallel STL,
 // implemented on top of Intel(R) Threading Building Blocks (Intel(R) TBB) library
index 18634a4..96e099c 100644 (file)
@@ -12,6 +12,7 @@
 
 #include <type_traits>
 
+#include "pstl_config.h"
 #include "utils.h"
 
 // This header defines the minimum set of vector routines required