//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // An vector is a contiguous container #include #include #include "test_allocator.h" #include "min_allocator.h" template void test_contiguous ( const C &c ) { for ( size_t i = 0; i < c.size(); ++i ) assert ( *(c.begin() + static_cast(i)) == *(std::addressof(*c.begin()) + i)); } int main() { { typedef int T; typedef std::vector C; test_contiguous(C()); test_contiguous(C(3, 5)); } { typedef double T; typedef test_allocator A; typedef std::vector C; test_contiguous(C(A(3))); test_contiguous(C(7, 9.0, A(5))); } #if TEST_STD_VER >= 11 { typedef double T; typedef min_allocator A; typedef std::vector C; test_contiguous(C(A{})); test_contiguous(C(9, 11.0, A{})); } #endif }