From cd6f7f9d8082db156a8392e9d1e089800e4e4fda Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Tue, 26 May 2015 19:17:09 +0000 Subject: Fix broken test I just added llvm-svn: 238234 --- libcxx/test/std/containers/sequences/vector/contiguous.pass.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libcxx/test/std/containers') diff --git a/libcxx/test/std/containers/sequences/vector/contiguous.pass.cpp b/libcxx/test/std/containers/sequences/vector/contiguous.pass.cpp index f685986cf91..32f38077833 100644 --- a/libcxx/test/std/containers/sequences/vector/contiguous.pass.cpp +++ b/libcxx/test/std/containers/sequences/vector/contiguous.pass.cpp @@ -43,10 +43,10 @@ int main() #if __cplusplus >= 201103L { typedef double T; - typedef min_allocator A; + typedef min_allocator A; typedef std::vector C; - test_contiguous(S(A{})); - test_contiguous(S(9, 11.0, A{})); + test_contiguous(C(A{})); + test_contiguous(C(9, 11.0, A{})); } #endif } -- cgit v1.2.3