2015-03-05 Paolo Carlini <paolo.carlini@oracle.com>
authorPaolo Carlini <paolo.carlini@oracle.com>
Thu, 5 Mar 2015 09:21:39 +0000 (09:21 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Thu, 5 Mar 2015 09:21:39 +0000 (09:21 +0000)
Fix last commit.

From-SVN: r221208

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/initlist92.C

index 2dff949ae1081ffe2dba4584e46beeeafb90ddee..13f4804c3606b53b59cdad81e0195d3244f2e3fa 100644 (file)
@@ -1,3 +1,7 @@
+2015-03-05  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       Fix last commit.
+
 2015-03-05  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR c++/64665
index 527533cf9615a65b876204cf7e13fcf37432244f..81a63182f0e24d410e2649dde89e2b87c4be292b 100644 (file)
@@ -4,45 +4,44 @@
 #include <string>
 #include <cassert>
 
-bool Test1(const bool arg
+bool Test1(bool
 {
   return true;
 }
-bool Test1(const std::string arg)
+bool Test1(std::string)
 {
   return false;
 }
 
-bool Test2(const int arg) 
+bool Test2(int)
 {
   return false;
 }
-bool Test2(const std::initializer_list<int> arg)
+bool Test2(std::initializer_list<int>)
 {
   return true;
 }
 
 struct S 
 { 
-    S(int _a) : a(_a){}
-    int getA() const { return a; }
+    S(int _a) : a(_a) {}
 private:
     int a;
 };
-bool Test3(const int arg) 
+bool Test3(int)
 {
   return true;
 }
-bool Test3(const S arg)
+bool Test3(S)
 {
   return false;
 }
 
-bool Test4(const bool arg
+bool Test4(bool
 {
   return false;
 }
-bool Test4(const std::initializer_list<std::string> arg)
+bool Test4(std::initializer_list<std::string>)
 {
   return true;
 }