diff options
author | Mark Mitchell <mmitchel@gcc.gnu.org> | 1998-04-22 21:06:37 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1998-04-22 21:06:37 +0000 |
commit | 04a81d94f44365d400f18f2973fd95856351c681 (patch) | |
tree | 56b47777dc97f264fcff647bad58a6ea2034ed7b /gcc | |
parent | f5710887ad5b831a63fcd08babf0a2ae171f09e4 (diff) | |
download | gcc-04a81d94f44365d400f18f2973fd95856351c681.zip gcc-04a81d94f44365d400f18f2973fd95856351c681.tar.gz gcc-04a81d94f44365d400f18f2973fd95856351c681.tar.bz2 |
Add prototype
From-SVN: r19380
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/pt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index b6e695d..865f999 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -101,6 +101,7 @@ static tree build_template_decl PROTO((tree, tree)); static int mark_template_parm PROTO((tree, void *)); static tree tsubst_friend_function PROTO((tree, tree)); static tree get_bindings_real PROTO((tree, tree, tree, int)); +static int template_decl_level PROTO((tree)); /* Do any processing required when DECL (a member template declaration using TEMPLATE_PARAMETERS as its innermost parameter list) is @@ -5578,7 +5579,7 @@ type_unification_real (tparms, targs, parms, args, subr, /* Returns the level of DECL, which declares a template parameter. */ -static int +int template_decl_level (decl) tree decl; { |