diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2015-05-26 19:17:09 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2015-05-26 19:17:09 +0000 |
commit | cd6f7f9d8082db156a8392e9d1e089800e4e4fda (patch) | |
tree | 0edf8ec68c21e671615b60001d3c0ff92b36a280 /libcxx | |
parent | c5c29006dc665b90ab5cab3222704369f3f3b5a2 (diff) | |
download | bcm5719-llvm-cd6f7f9d8082db156a8392e9d1e089800e4e4fda.tar.gz bcm5719-llvm-cd6f7f9d8082db156a8392e9d1e089800e4e4fda.zip |
Fix broken test I just added
llvm-svn: 238234
Diffstat (limited to 'libcxx')
-rw-r--r-- | libcxx/test/std/containers/sequences/vector/contiguous.pass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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<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 } |