Commit 0c10a805 by Mark Mitchell Committed by Mark Mitchell

parse.y (empty_parms): Use `()', not `(...)', when in the scope of `extern "C++"'.

	* parse.y (empty_parms): Use `()', not `(...)', when in the scope
	of `extern "C++"'.

From-SVN: r35265
parent 5dc2d67f
2000-07-26 Mark Mitchell <mark@codesourcery.com>
* parse.y (empty_parms): Use `()', not `(...)', when in the scope
of `extern "C++"'.
2000-07-25 Nathan Sidwell <nathan@codesourcery.com>
Kill strict_prototype. Backwards compatibility only for
......
......@@ -102,7 +102,8 @@ empty_parms ()
tree parms;
#ifndef NO_IMPLICIT_EXTERN_C
if (in_system_header && current_class_type == NULL)
if (in_system_header && current_class_type == NULL
&& current_lang_name == lang_name_c)
parms = NULL_TREE;
else
#endif
......
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