summaryrefslogtreecommitdiff
path: root/gcc/cp/call.c
diff options
context:
space:
mode:
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>2016-02-20 04:31:16 +0000
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>2016-02-20 04:31:16 +0000
commitbd5bb665eb00598666a8162c2440410a51eb9e7e (patch)
treed038b95ebbc4f644bae8790434bf2f844546c414 /gcc/cp/call.c
parentb9ffa1227858b35b89a222a745e5c259046cd033 (diff)
downloadgcc-bd5bb665eb00598666a8162c2440410a51eb9e7e.tar.gz
PR c++/69743
* call.c (remaining_arguments): No longer static. * cp-tree.h: Declare it. * pt.c (more_specialized_fn): Use it. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@233579 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/call.c')
-rw-r--r--gcc/cp/call.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/call.c b/gcc/cp/call.c
index cb71176c6ca..4226094969a 100644
--- a/gcc/cp/call.c
+++ b/gcc/cp/call.c
@@ -1905,7 +1905,7 @@ add_candidate (struct z_candidate **candidates,
/* Return the number of remaining arguments in the parameter list
beginning with ARG. */
-static int
+int
remaining_arguments (tree arg)
{
int n;