]> 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 9cdb4b0a9f585cbe9a198a50c486850162ac441a..e5c348c5d3d4dd8e0f88ae3b097217dc5c5b2de9 100644 (file)
@@ -1,9 +1,8 @@
-// { dg-options "-std=gnu++11" }
-// { dg-require-string-conversions "" }
+// { dg-do run { target c++11 } }
 
 // 2008-06-15  Paolo Carlini  <paolo.carlini@oracle.com>
 
-// Copyright (C) 2008-2014 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
 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;
     }
@@ -51,9 +50,9 @@ test01()
   try
     {
       string one("a");
-      stol(one);      
+      stol(one);
     }
-  catch(std::invalid_argument)
+  catch(const std::invalid_argument&)
     {
       test = true;
     }
@@ -66,7 +65,7 @@ test01()
   try
     {
       string one("a");
-      l1 = stol(one, 0, 16);      
+      l1 = stol(one, 0, 16);
     }
   catch(...)
     {
@@ -79,7 +78,7 @@ test01()
   try
     {
       string one("78");
-      l1 = stol(one, &idx1, 8);      
+      l1 = stol(one, &idx1, 8);
     }
   catch(...)
     {
@@ -92,7 +91,7 @@ test01()
   try
     {
       string one("10112");
-      l1 = stol(one, &idx1, 2);      
+      l1 = stol(one, &idx1, 2);
     }
   catch(...)
     {
@@ -105,7 +104,7 @@ test01()
   try
     {
       string one("0XE");
-      l1 = stol(one, &idx1, 0);      
+      l1 = stol(one, &idx1, 0);
     }
   catch(...)
     {
@@ -121,7 +120,7 @@ test01()
       string one(1000, '9');
       l1 = stol(one);
     }
-  catch(std::out_of_range)
+  catch(const std::out_of_range&)
     {
       test = true;
     }