diff options
author | Zack Weinberg <zack@gcc.gnu.org> | 2003-07-17 20:12:21 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2003-07-17 20:12:21 +0000 |
commit | eb1dfbb2fb30682e7048332e2c99187497db6c02 (patch) | |
tree | 039fb91b57a3220b33a7ad55edc6af0d1c8d74c3 /gcc/cp/pt.c | |
parent | 78ff95dc17c157fafe2169b9e0bb47c2417dce85 (diff) | |
download | gcc-eb1dfbb2fb30682e7048332e2c99187497db6c02.zip gcc-eb1dfbb2fb30682e7048332e2c99187497db6c02.tar.gz gcc-eb1dfbb2fb30682e7048332e2c99187497db6c02.tar.bz2 |
c-decl.c: Fix typos in several comments.
* c-decl.c: Fix typos in several comments. Remove all
#if 0 blocks; reindent as needed. Remove unused argument
to declare_parm_level; all callers changed.
* c-parse.in: Update calls to declare_parm_level. Avoid
issuing a double warning in some circumstances.
* c-typeck.c: Update calls to declare_parm_level.
* c-tree.h: Update prototype of declare_parm_level.
* c-pragma.c (apply_pragma_weak): Don't complain about a
redundant #pragma weak.
* objc/objc-act.c (forward_declare_categories,
build_selector_reference_decl, build_class_reference_decl,
build_objc_string_decl, synth_forward_declarations,
build_protocol_reference): Set TREE_PUBLIC on synthetic
forward decl to 0, consistent with eventual definition.
Correct comments to match.
cp:
* pt.c (get_bindings): Make definition consistent with
forward declaration.
From-SVN: r69519
Diffstat (limited to 'gcc/cp/pt.c')
-rw-r--r-- | gcc/cp/pt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index 6c4a5a8..bbce47e 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -10028,7 +10028,7 @@ get_bindings_real (tree fn, /* For most uses, we want to check the return type. */ -tree +static tree get_bindings (tree fn, tree decl, tree explicit_args) { return get_bindings_real (fn, decl, explicit_args, 1, DEDUCE_EXACT, -1); |