diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-10-08 00:57:56 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-10-08 00:57:56 +0000 |
commit | 653179b77bed9919ee220870b4f4e19dbe6cd72c (patch) | |
tree | e8c0d936987df0b757f807353b9220e83ebb0763 /libcxx/test/support | |
parent | 69a4f66114eed30c06d403bf3cb1e2e9360a20d4 (diff) | |
download | bcm5719-llvm-653179b77bed9919ee220870b4f4e19dbe6cd72c.tar.gz bcm5719-llvm-653179b77bed9919ee220870b4f4e19dbe6cd72c.zip |
Add missing include in test_allocator.h
llvm-svn: 283632
Diffstat (limited to 'libcxx/test/support')
-rw-r--r-- | libcxx/test/support/test_allocator.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libcxx/test/support/test_allocator.h b/libcxx/test/support/test_allocator.h index 41473371500..4333e4dc3c4 100644 --- a/libcxx/test/support/test_allocator.h +++ b/libcxx/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> |