aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/tbb/patches/concurrent_queue_add_missing_includes.patch
blob: f8f6b001443ddfd31d6b1fb3930448c74b101d7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--- contrib/libs/tbb/include/oneapi/tbb/concurrent_queue.h	(index)
+++ contrib/libs/tbb/include/oneapi/tbb/concurrent_queue.h	(working tree)
@@ -24,6 +24,14 @@
 #include "detail/_containers_helpers.h"
 #include "cache_aligned_allocator.h"
 
+#include <algorithm>
+#include <atomic>
+#include <cstddef>
+#include <cstdint>
+#include <initializer_list>
+#include <type_traits>
+#include <utility>
+
 namespace tbb {
 namespace detail {
 namespace d2 {