diff options
author | reichelt <reichelt@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-23 18:26:01 +0000 |
---|---|---|
committer | reichelt <reichelt@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-23 18:26:01 +0000 |
commit | 6cf0bc8c8b789cc8045faebeb8ada8697e04e719 (patch) | |
tree | 234d65b70f646f64cc917040778043870546dd13 /gcc/cp/method.c | |
parent | c4711d25884b14e41f7986a0cc580d118d625454 (diff) | |
download | gcc-6cf0bc8c8b789cc8045faebeb8ada8697e04e719.tar.gz |
* cp-tree.h (do_poplevel): Remove prototype.
* semantics.c (do_poplevel): Add prototype. Make static.
* cp-tree.h (original_type): Remove prototype.
* typeck.c (original_type): Make static.
* cp-tree.h (declare_global_var): Remove prototype.
* decl.c (declare_global_var): Make static.
* cp-tree.h (implicitly_declare_fn): Remove prototype.
* method.c (implicitly_declare_fn): Make static.
* cp-tree.h (fold_decl_constant_value): Remove prototype.
* pt.c (fold_decl_constant_value): Make static.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@110140 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/method.c')
-rw-r--r-- | gcc/cp/method.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/method.c b/gcc/cp/method.c index 250c66d08b3..4a1a4ed2dac 100644 --- a/gcc/cp/method.c +++ b/gcc/cp/method.c @@ -969,7 +969,7 @@ locate_copy (tree type, void *client_) reference argument or a non-const reference. Returns the FUNCTION_DECL for the implicitly declared function. */ -tree +static tree implicitly_declare_fn (special_function_kind kind, tree type, bool const_p) { tree fn; |