diff options
author | Volker Reichelt <reichelt@igpm.rwth-aachen.de> | 2006-01-20 13:18:06 +0000 |
---|---|---|
committer | Volker Reichelt <reichelt@gcc.gnu.org> | 2006-01-20 13:18:06 +0000 |
commit | ede7acf17576192c7d516b79cf35793138a654df (patch) | |
tree | 830062b3e715bde571258516dde69500686706a0 /gcc/cp/parser.c | |
parent | 0174997a11503d665901689e11d2e88b5f27d552 (diff) | |
download | gcc-ede7acf17576192c7d516b79cf35793138a654df.zip gcc-ede7acf17576192c7d516b79cf35793138a654df.tar.gz gcc-ede7acf17576192c7d516b79cf35793138a654df.tar.bz2 |
call.c (add_builtin_candidates): Remove superfluous return.
* call.c (add_builtin_candidates): Remove superfluous return.
* name-lookup.c (do_toplevel_using_decl): Likewise.
* parser.c (cp_parser_type_specifier_seq): Likewise.
(cp_parser_save_default_args): Likewise.
From-SVN: r110022
Diffstat (limited to 'gcc/cp/parser.c')
-rw-r--r-- | gcc/cp/parser.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index cf19fbf..814ee5a 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -11893,8 +11893,6 @@ cp_parser_type_specifier_seq (cp_parser* parser, if (is_condition && !is_cv_qualifier) flags |= CP_PARSER_FLAGS_NO_USER_DEFINED_TYPES; } - - return; } /* Parse a parameter-declaration-clause. @@ -15766,7 +15764,6 @@ cp_parser_save_default_args (cp_parser* parser, tree decl) TREE_PURPOSE (parser->unparsed_functions_queues)); break; } - return; } /* FN is a FUNCTION_DECL which may contains a parameter with an |