Fix broken test I just added

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@238234 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow 2015-05-26 19:17:09 +00:00
parent b5b66923e3
commit 7242d18811

View File

@ -43,10 +43,10 @@ int main()
#if __cplusplus >= 201103L
{
typedef double T;
typedef min_allocator<TW> A;
typedef min_allocator<T> A;
typedef std::vector<T, A> C;
test_contiguous(S(A{}));
test_contiguous(S(9, 11.0, A{}));
test_contiguous(C(A{}));
test_contiguous(C(9, 11.0, A{}));
}
#endif
}