diff options
Diffstat (limited to 'test/std/algorithms/alg.nonmodifying')
3 files changed, 3 insertions, 3 deletions
diff --git a/test/std/algorithms/alg.nonmodifying/alg.count/count_if.pass.cpp b/test/std/algorithms/alg.nonmodifying/alg.count/count_if.pass.cpp index 0a05c6f659ca..ec0526c2dc5c 100644 --- a/test/std/algorithms/alg.nonmodifying/alg.count/count_if.pass.cpp +++ b/test/std/algorithms/alg.nonmodifying/alg.count/count_if.pass.cpp @@ -25,7 +25,7 @@ struct eq { bool operator () (int v2) const { return v == v2; } int v; }; - + int main() { diff --git a/test/std/algorithms/alg.nonmodifying/alg.find/find_if.pass.cpp b/test/std/algorithms/alg.nonmodifying/alg.find/find_if.pass.cpp index c942d2e38a58..761d71bbf287 100644 --- a/test/std/algorithms/alg.nonmodifying/alg.find/find_if.pass.cpp +++ b/test/std/algorithms/alg.nonmodifying/alg.find/find_if.pass.cpp @@ -25,7 +25,7 @@ struct eq { bool operator () (int v2) const { return v == v2; } int v; }; - + int main() { int ia[] = {0, 1, 2, 3, 4, 5}; diff --git a/test/std/algorithms/alg.nonmodifying/alg.find/find_if_not.pass.cpp b/test/std/algorithms/alg.nonmodifying/alg.find/find_if_not.pass.cpp index e68344b4b259..2e52e260336d 100644 --- a/test/std/algorithms/alg.nonmodifying/alg.find/find_if_not.pass.cpp +++ b/test/std/algorithms/alg.nonmodifying/alg.find/find_if_not.pass.cpp @@ -25,7 +25,7 @@ struct ne { bool operator () (int v2) const { return v != v2; } int v; }; - + int main() { |
