diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2013-09-08 21:13:57 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2013-09-08 21:13:57 +0000 |
commit | cdd01917ff163f8b526b9377df609c23b721c76a (patch) | |
tree | 166ed6ccd7b4e2123f4b896da2b3cdec294233b8 /libcxx/test/containers | |
parent | d24899bfc264c5a1babce3b916a574bf955d7817 (diff) | |
download | bcm5719-llvm-cdd01917ff163f8b526b9377df609c23b721c76a.tar.gz bcm5719-llvm-cdd01917ff163f8b526b9377df609c23b721c76a.zip |
Remove a tab that snuck in
llvm-svn: 190283
Diffstat (limited to 'libcxx/test/containers')
-rw-r--r-- | libcxx/test/containers/sequences/list/list.cons/size_type.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/containers/sequences/list/list.cons/size_type.pass.cpp b/libcxx/test/containers/sequences/list/list.cons/size_type.pass.cpp index e32b22f5aa0..864b5adcf8a 100644 --- a/libcxx/test/containers/sequences/list/list.cons/size_type.pass.cpp +++ b/libcxx/test/containers/sequences/list/list.cons/size_type.pass.cpp @@ -60,7 +60,7 @@ int main() } #if _LIBCPP_STD_VER > 11 { - typedef std::list<int, min_allocator<int> > C; + typedef std::list<int, min_allocator<int> > C; C l(3, min_allocator<int> ()); assert(l.size() == 3); assert(std::distance(l.begin(), l.end()) == 3); |