utils: add missing include

Noticed when testing VecDeque with no other includes.

For libc++, need type_traits for std::is_trivially_destructible_v.
This commit is contained in:
Cory Fields 2024-06-11 16:26:17 +00:00
parent 337f9d44c2
commit f51da34ec1

View file

@ -9,6 +9,7 @@
#include <cstring>
#include <memory>
#include <type_traits>
/** Data structure largely mimicking std::deque, but using single preallocated ring buffer.
*