diff options
author | Howard Hinnant <hhinnant@apple.com> | 2010-08-22 00:08:10 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2010-08-22 00:08:10 +0000 |
commit | 664ae8118ea09fd6aec69eb34dc93f5573fdcb99 (patch) | |
tree | 0adb06ae200b3ce8348cfb8931ba2d83e7e8d336 /libcxx/test/algorithms/alg.modifying.operations/alg.transform | |
parent | 475999dcf9ee95dc5835962a65f3fd96e3c3cc23 (diff) | |
download | bcm5719-llvm-664ae8118ea09fd6aec69eb34dc93f5573fdcb99.tar.gz bcm5719-llvm-664ae8118ea09fd6aec69eb34dc93f5573fdcb99.zip |
Fixing whitespace problems
llvm-svn: 111753
Diffstat (limited to 'libcxx/test/algorithms/alg.modifying.operations/alg.transform')
-rw-r--r-- | libcxx/test/algorithms/alg.modifying.operations/alg.transform/binary_transform.pass.cpp | 6 | ||||
-rw-r--r-- | libcxx/test/algorithms/alg.modifying.operations/alg.transform/unary_transform.pass.cpp | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/libcxx/test/algorithms/alg.modifying.operations/alg.transform/binary_transform.pass.cpp b/libcxx/test/algorithms/alg.modifying.operations/alg.transform/binary_transform.pass.cpp index bfed398cabe..e417683b170 100644 --- a/libcxx/test/algorithms/alg.modifying.operations/alg.transform/binary_transform.pass.cpp +++ b/libcxx/test/algorithms/alg.modifying.operations/alg.transform/binary_transform.pass.cpp @@ -9,9 +9,9 @@ // <algorithm> -// template<InputIterator InIter1, InputIterator InIter2, class OutIter, -// Callable<auto, const InIter1::value_type&, const InIter2::value_type&> BinaryOp> -// requires OutputIterator<OutIter, BinaryOp::result_type> && CopyConstructible<BinaryOp> +// template<InputIterator InIter1, InputIterator InIter2, class OutIter, +// Callable<auto, const InIter1::value_type&, const InIter2::value_type&> BinaryOp> +// requires OutputIterator<OutIter, BinaryOp::result_type> && CopyConstructible<BinaryOp> // OutIter // transform(InIter1 first1, InIter1 last1, InIter2 first2, OutIter result, BinaryOp binary_op); diff --git a/libcxx/test/algorithms/alg.modifying.operations/alg.transform/unary_transform.pass.cpp b/libcxx/test/algorithms/alg.modifying.operations/alg.transform/unary_transform.pass.cpp index 47674fffc02..91b31fb8ed9 100644 --- a/libcxx/test/algorithms/alg.modifying.operations/alg.transform/unary_transform.pass.cpp +++ b/libcxx/test/algorithms/alg.modifying.operations/alg.transform/unary_transform.pass.cpp @@ -9,9 +9,9 @@ // <algorithm> -// template<InputIterator InIter, class OutIter, -// Callable<auto, const InIter::value_type&> Op> -// requires OutputIterator<OutIter, Op::result_type> && CopyConstructible<Op> +// template<InputIterator InIter, class OutIter, +// Callable<auto, const InIter::value_type&> Op> +// requires OutputIterator<OutIter, Op::result_type> && CopyConstructible<Op> // OutIter // transform(InIter first, InIter last, OutIter result, Op op); |