diff options
author | akhropov <akhropov@yandex-team.com> | 2025-02-25 12:28:59 +0300 |
---|---|---|
committer | akhropov <akhropov@yandex-team.com> | 2025-02-25 13:11:43 +0300 |
commit | d6ef02165ca3f002937896517f606d9d72725d7e (patch) | |
tree | 810dce0c2f00807482e164fcb3c9a39b1a8d3293 | |
parent | aebb93bd6a40c2df6aa6e620db12ac8d74c91dcc (diff) | |
download | ydb-d6ef02165ca3f002937896517f606d9d72725d7e.tar.gz |
Add missing includes.
commit_hash:d24f93b2201e0349db7e7b774d783a78770044e5
-rw-r--r-- | contrib/libs/tbb/include/oneapi/tbb/concurrent_queue.h | 8 | ||||
-rw-r--r-- | contrib/libs/tbb/patches/concurrent_queue_add_missing_includes.patch | 17 |
2 files changed, 25 insertions, 0 deletions
diff --git a/contrib/libs/tbb/include/oneapi/tbb/concurrent_queue.h b/contrib/libs/tbb/include/oneapi/tbb/concurrent_queue.h index 1e7ff50ba3..9e8a02f64f 100644 --- a/contrib/libs/tbb/include/oneapi/tbb/concurrent_queue.h +++ b/contrib/libs/tbb/include/oneapi/tbb/concurrent_queue.h @@ -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 { diff --git a/contrib/libs/tbb/patches/concurrent_queue_add_missing_includes.patch b/contrib/libs/tbb/patches/concurrent_queue_add_missing_includes.patch new file mode 100644 index 0000000000..f8f6b00144 --- /dev/null +++ b/contrib/libs/tbb/patches/concurrent_queue_add_missing_includes.patch @@ -0,0 +1,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 { |