diff options
| author | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-04 05:05:06 +0000 |
|---|---|---|
| committer | gdr <gdr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-04 05:05:06 +0000 |
| commit | 1bc0f76b068e42d3230fa42d20c1c84c8d8a1213 (patch) | |
| tree | 2f752d979cc867f2a1a11a79d8451af6f170a915 | |
| parent | d15353b6e396794a42301a349cbab8a109c52778 (diff) | |
| download | ppe42-gcc-1bc0f76b068e42d3230fa42d20c1c84c8d8a1213.tar.gz ppe42-gcc-1bc0f76b068e42d3230fa42d20c1c84c8d8a1213.zip | |
* decl.c (grokdeclarator): Use OPT_Wreturn_type instead of 0.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121568 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/cp/decl.c | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 4e9db1770ee..c5e688036d2 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2007-02-03 Gabriel Dos Reis <gdr@integrable-solutions.net> + + * decl.c (grokdeclarator): Use OPT_Wreturn_type instead of 0. + 2007-02-04 Kazu Hirata <kazu@codesourcery.com> * class.c, cp-tree.h, decl.c, decl2.c, g++spec.c, init.c, diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index 01398f2fa93..e6f06640037 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -7254,8 +7254,9 @@ grokdeclarator (const cp_declarator *declarator, /* Allow it, sigh. */; else if (pedantic || ! is_main) pedwarn ("ISO C++ forbids declaration of %qs with no type", name); - else if (warn_return_type) - warning (0, "ISO C++ forbids declaration of %qs with no type", name); + else + warning (OPT_Wreturn_type, + "ISO C++ forbids declaration of %qs with no type", name); type = integer_type_node; } |

