Commit 373dae05 by Brendan Kehoe Committed by Brendan Kehoe

decl.c (finish_function): Give a pedwarn for reaching end of non-void function, not just a warning.

        * decl.c (finish_function): Give a pedwarn for reaching end of
        non-void function, not just a warning.

From-SVN: r18217
parent 8adf5b5e
1998-02-24 Brendan Kehoe <brendan@cygnus.com>
* decl.c (finish_function): Give a pedwarn for reaching end of
non-void function, not just a warning.
Tue Feb 24 01:40:24 1998 Jason Merrill <jason@yorick.cygnus.com>
* pt.c (instantiate_class_template): Don't instantiate if pedantic
......
......@@ -12552,7 +12552,7 @@ finish_function (lineno, call_poplevel, nested)
{
/* If this function returns non-void and control can drop through,
complain. */
cp_warning ("control reaches end of non-void function `%D'", fndecl);
cp_pedwarn ("control reaches end of non-void function `%D'", fndecl);
}
/* With just -W, complain only if function returns both with
and without a value. */
......
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