Browse Source

Add missing include in test_allocator.h

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@283632 91177308-0d34-0410-b5e6-96231b3b80d8
Eric Fiselier 9 years ago
parent
commit
ef9e52bc90
1 changed files with 3 additions and 2 deletions
  1. 3 2
      test/support/test_allocator.h

+ 3 - 2
test/support/test_allocator.h

@@ -10,10 +10,11 @@
 #ifndef TEST_ALLOCATOR_H
 #define TEST_ALLOCATOR_H
 
-#include <cstddef>
 #include <type_traits>
-#include <cstdlib>
 #include <new>
+#include <memory>
+#include <cstddef>
+#include <cstdlib>
 #include <climits>
 #include <cassert>