diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2013-09-13 15:22:55 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2013-09-13 15:22:55 +0000 |
commit | ef6f1151b0d1f32b80d8d326e7176ca06e06a2f4 (patch) | |
tree | d29a706d04024cb5df9102cc146b0a3921e9475f /libcxx/test/containers/sequences/dynarray/dynarray.traits/default.pass.cpp | |
parent | c38b2dabb0c0092d131710de0e8e57fbc73b6d0c (diff) | |
download | bcm5719-llvm-ef6f1151b0d1f32b80d8d326e7176ca06e06a2f4.tar.gz bcm5719-llvm-ef6f1151b0d1f32b80d8d326e7176ca06e06a2f4.zip |
Initial implementation of <dynarray>. No allocator support pending resolution of LWG #2235; no stack allocation pending compiler support
llvm-svn: 190697
Diffstat (limited to 'libcxx/test/containers/sequences/dynarray/dynarray.traits/default.pass.cpp')
-rw-r--r-- | libcxx/test/containers/sequences/dynarray/dynarray.traits/default.pass.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/libcxx/test/containers/sequences/dynarray/dynarray.traits/default.pass.cpp b/libcxx/test/containers/sequences/dynarray/dynarray.traits/default.pass.cpp new file mode 100644 index 00000000000..baf551ee38b --- /dev/null +++ b/libcxx/test/containers/sequences/dynarray/dynarray.traits/default.pass.cpp @@ -0,0 +1,29 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +// dynarray.data + +// template <class Type, class Alloc> +// struct uses_allocator<dynarray<Type>, Alloc> : true_type { }; + + +#include <__config> + +#if _LIBCPP_STD_VER > 11 + +#include <dynarray> +#include "../../../test_allocator.h" + +int main() +{ + static_assert ( std::uses_allocator<std::dynarray<int>, test_allocator<int>>::value, "" ); +} +#else +int main() {} +#endif |