diff options
author | mikhnenko <mikhnenko@yandex-team.com> | 2024-01-30 20:01:19 +0300 |
---|---|---|
committer | mikhnenko <mikhnenko@yandex-team.com> | 2024-01-30 20:26:26 +0300 |
commit | f4af0ac174109622a612bb0e04cbef8a170b68c5 (patch) | |
tree | c6ed6bdba48821193e486b11efc9813c674a6833 | |
parent | b77c567d86c1c64a24e839c81b1ce0a7517cf3a1 (diff) | |
download | ydb-f4af0ac174109622a612bb0e04cbef8a170b68c5.tar.gz |
Add missed #include <type_traits>
-rw-r--r-- | util/generic/vector.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/generic/vector.h b/util/generic/vector.h index a5b258955a..8cb0aeaea1 100644 --- a/util/generic/vector.h +++ b/util/generic/vector.h @@ -8,6 +8,10 @@ #include <vector> #include <initializer_list> +#ifdef _YNDX_LIBCXX_ENABLE_VECTOR_POD_RESIZE_UNINITIALIZED + #include <type_traits> +#endif + template <class T, class A> class TVector: public std::vector<T, TReboundAllocator<A, T>> { public: |