Skip to content

Commit f51da34

Browse files
committed
utils: add missing include
Noticed when testing VecDeque with no other includes. For libc++, need type_traits for std::is_trivially_destructible_v.
1 parent 337f9d4 commit f51da34

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/util/vecdeque.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
#include <cstring>
1111
#include <memory>
12+
#include <type_traits>
1213

1314
/** Data structure largely mimicking std::deque, but using single preallocated ring buffer.
1415
*

0 commit comments

Comments
 (0)