diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2014-10-18 11:03:33 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2014-10-18 11:03:33 +0000 |
commit | c8528b5001f121449470d57caa7bc06cc81e7bfc (patch) | |
tree | 4a1431fb5184d0d2bb6b227ecdb789e6b5b491c2 /libcxx/test/utilities/function.objects/refwrap | |
parent | be9dccd64d25227832f9cf0c1775acfa072be529 (diff) | |
download | bcm5719-llvm-c8528b5001f121449470d57caa7bc06cc81e7bfc.tar.gz bcm5719-llvm-c8528b5001f121449470d57caa7bc06cc81e7bfc.zip |
Whitespace maintenance. Remove a bunch of tabs that snuck in. No functionality change
llvm-svn: 220142
Diffstat (limited to 'libcxx/test/utilities/function.objects/refwrap')
-rw-r--r-- | libcxx/test/utilities/function.objects/refwrap/refwrap.helpers/ref_2.pass.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/test/utilities/function.objects/refwrap/refwrap.helpers/ref_2.pass.cpp b/libcxx/test/utilities/function.objects/refwrap/refwrap.helpers/ref_2.pass.cpp index 5a95097f689..4033e676f01 100644 --- a/libcxx/test/utilities/function.objects/refwrap/refwrap.helpers/ref_2.pass.cpp +++ b/libcxx/test/utilities/function.objects/refwrap/refwrap.helpers/ref_2.pass.cpp @@ -35,9 +35,9 @@ int main() unary_counting_predicate<bool(*)(int), int> cp(is5); assert(!cp(6)); assert(cp.count() == 1); - assert(call_pred(cp)); + assert(call_pred(cp)); assert(cp.count() == 1); - assert(call_pred(std::ref(cp))); + assert(call_pred(std::ref(cp))); assert(cp.count() == 2); - } + } } |