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:
parent
b5b66923e3
commit
7242d18811
@ -43,10 +43,10 @@ int main()
|
|||||||
#if __cplusplus >= 201103L
|
#if __cplusplus >= 201103L
|
||||||
{
|
{
|
||||||
typedef double T;
|
typedef double T;
|
||||||
typedef min_allocator<TW> A;
|
typedef min_allocator<T> A;
|
||||||
typedef std::vector<T, A> C;
|
typedef std::vector<T, A> C;
|
||||||
test_contiguous(S(A{}));
|
test_contiguous(C(A{}));
|
||||||
test_contiguous(S(9, 11.0, A{}));
|
test_contiguous(C(9, 11.0, A{}));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user