]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/25_algorithms/find_if/1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / find_if / 1.cc
index c1d9255ea42bf12a728e047579f093063604a397..422991bc864528dce6b73a16d1fd6e0059c21e76 100644 (file)
@@ -1,9 +1,9 @@
-// Copyright (C) 2005 Free Software Foundation, Inc.
+// Copyright (C) 2005-2024 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the
 // terms of the GNU General Public License as published by the
-// Free Software Foundation; either version 2, or (at your option)
+// Free Software Foundation; either version 3, or (at your option)
 // any later version.
 
 // This library is distributed in the hope that it will be useful,
@@ -12,9 +12,8 @@
 // GNU General Public License for more details.
 
 // You should have received a copy of the GNU General Public License along
-// with this library; see the file COPYING.  If not, write to the Free
-// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
-// USA.
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
 
 // 25.1.2 find_if
 
@@ -36,24 +35,24 @@ void
 test1()
 {
   Container con(array, array);
-  VERIFY(std::find_if(con.begin(), con.end(), 
-                     predicate).ptr == array);
+  VERIFY( std::find_if(con.begin(), con.end(), 
+                      predicate).ptr == array );
 }
 
 void
 test2()
 {
   Container con(array, array + 1);
-  VERIFY(std::find_if(con.begin(), con.end(), 
-                     predicate).ptr == array + 1);
+  VERIFY( std::find_if(con.begin(), con.end(), 
+                      predicate).ptr == array + 1 );
 }
 
 void
 test3()
 {
   Container con(array, array + 6);
-  VERIFY(std::find_if(con.begin(), con.end(),
-                     predicate).ptr == array + 3);
+  VERIFY( std::find_if(con.begin(), con.end(),
+                      predicate).ptr == array + 3 );
 }
 
 int 
@@ -62,4 +61,5 @@ main()
   test1();
   test2();
   test3();
+  return 0;
 }