]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/21_strings/basic_string/numeric_conversions/char/stol.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / numeric_conversions / char / stol.cc
index 25970f2eb5fa49c6f3d494d46e960656b2cc0c13..e5c348c5d3d4dd8e0f88ae3b097217dc5c5b2de9 100644 (file)
@@ -1,14 +1,13 @@
-// { dg-options "-std=gnu++0x" }
-// { dg-require-string-conversions "" }
+// { dg-do run { target c++11 } }
 
 // 2008-06-15  Paolo Carlini  <paolo.carlini@oracle.com>
 
-// Copyright (C) 2008 Free Software Foundation, Inc.
+// Copyright (C) 2008-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,
@@ -17,9 +16,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, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
-// USA.
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
 
 // 21.4 Numeric Conversions [string.conversions]
 
 void
 test01()
 {
-  bool test __attribute__((unused)) = false;
+  bool test = false;
   using namespace std;
 
   try
     {
       string one;
-      stol(one);      
+      stol(one);
     }
-  catch(std::invalid_argument)
+  catch(const std::invalid_argument&)
     {
       test = true;
     }
@@ -52,9 +50,9 @@ test01()
   try
     {
       string one("a");
-      stol(one);      
+      stol(one);
     }
-  catch(std::invalid_argument)
+  catch(const std::invalid_argument&)
     {
       test = true;
     }
@@ -67,7 +65,7 @@ test01()
   try
     {
       string one("a");
-      l1 = stol(one, 0, 16);      
+      l1 = stol(one, 0, 16);
     }
   catch(...)
     {
@@ -80,7 +78,7 @@ test01()
   try
     {
       string one("78");
-      l1 = stol(one, &idx1, 8);      
+      l1 = stol(one, &idx1, 8);
     }
   catch(...)
     {
@@ -93,7 +91,7 @@ test01()
   try
     {
       string one("10112");
-      l1 = stol(one, &idx1, 2);      
+      l1 = stol(one, &idx1, 2);
     }
   catch(...)
     {
@@ -106,7 +104,7 @@ test01()
   try
     {
       string one("0XE");
-      l1 = stol(one, &idx1, 0);      
+      l1 = stol(one, &idx1, 0);
     }
   catch(...)
     {
@@ -122,7 +120,7 @@ test01()
       string one(1000, '9');
       l1 = stol(one);
     }
-  catch(std::out_of_range)
+  catch(const std::out_of_range&)
     {
       test = true;
     }