diff options
author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2017-01-07 01:12:15 +0000 |
---|---|---|
committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2017-01-07 01:12:15 +0000 |
commit | 12195f1f03226da903d94d137ec2c8dd15a6ee62 (patch) | |
tree | d57f5bb2b6c95860a38a2f447311851180ec6357 /libcxx/test/std/iterators/iterator.range/begin-end.pass.cpp | |
parent | e56e039e4b8f2c2e82a31e56f790908cb34d7181 (diff) | |
download | bcm5719-llvm-12195f1f03226da903d94d137ec2c8dd15a6ee62.tar.gz bcm5719-llvm-12195f1f03226da903d94d137ec2c8dd15a6ee62.zip |
[libcxx] [test] Strip trailing whitespace. NFC, no code review.
llvm-svn: 291322
Diffstat (limited to 'libcxx/test/std/iterators/iterator.range/begin-end.pass.cpp')
-rw-r--r-- | libcxx/test/std/iterators/iterator.range/begin-end.pass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/test/std/iterators/iterator.range/begin-end.pass.cpp b/libcxx/test/std/iterators/iterator.range/begin-end.pass.cpp index a0774888d56..2b5377f486f 100644 --- a/libcxx/test/std/iterators/iterator.range/begin-end.pass.cpp +++ b/libcxx/test/std/iterators/iterator.range/begin-end.pass.cpp @@ -179,10 +179,10 @@ int main(){ static_assert ( std::rbegin(c) != std::rend(c), ""); static_assert ( std::cbegin(c) != std::cend(c), ""); static_assert ( std::crbegin(c) != std::crend(c), ""); - + static_assert ( *c.begin() == 0, ""); static_assert ( *c.rbegin() == 4, ""); - + static_assert ( *std::begin(c) == 0, "" ); static_assert ( *std::cbegin(c) == 0, "" ); static_assert ( *std::rbegin(c) == 4, "" ); @@ -191,7 +191,7 @@ int main(){ { static constexpr const int c[] = {0,1,2,3,4}; - + static_assert ( *std::begin(c) == 0, "" ); static_assert ( *std::cbegin(c) == 0, "" ); static_assert ( *std::rbegin(c) == 4, "" ); |