Commit 68812e37 by Kaveh R. Ghazi Committed by Kaveh Ghazi

re PR objc++/34193 (FAIL: obj-c++.dg/gnu-runtime-2.mm (test for excess errors))

	PR objc++/34193
	* obj-c++.dg/gnu-runtime-2.mm: Fix signature of function main().

From-SVN: r132211
parent c56b5dc8
2008-02-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
PR objc++/34193
* obj-c++.dg/gnu-runtime-2.mm: Fix signature of function main().
2008-02-06 Alexandre Oliva <aoliva@redhat.com>
PR c++/35056
......@@ -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 ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment