]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR objc++/34193 (FAIL: obj-c++.dg/gnu-runtime-2.mm (test for excess errors))
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Tue, 12 Feb 2008 21:31:21 +0000 (21:31 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Tue, 12 Feb 2008 21:31:21 +0000 (21:31 +0000)
PR objc++/34193
* obj-c++.dg/gnu-runtime-2.mm: Fix signature of function main().

From-SVN: r132271

gcc/testsuite/ChangeLog
gcc/testsuite/obj-c++.dg/gnu-runtime-2.mm

index 80029693115042bcc9f559edcd900a1685365487..1e7640a58d14c0c301f767440a2526f1f9df21f2 100644 (file)
@@ -1,3 +1,8 @@
+2008-02-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       PR objc++/34193
+       * obj-c++.dg/gnu-runtime-2.mm: Fix signature of function main().
+
 2008-02-12  Jason Merrill  <jason@redhat.com>
 
        * g++.dg/init/ctor8.C: Remove.
index 2ead288353785d48102d59a7d94d06afd55a0f98..e6a1d181d903d3b0f777426a68b9a27d4c832f0a 100644 (file)
@@ -22,7 +22,7 @@
 -(unsigned int) length  { return len; }
 @end
 
-int main(int argc, void **args)
+int main(int argc, const char **args)
 {
   if (strcmp ([@"this is a string" cString], "this is a string"))
     abort ();