summaryrefslogtreecommitdiff
path: root/gdb/eval.c
diff options
context:
space:
mode:
authorsivachandra <sivachandra>2013-01-25 22:31:40 +0000
committersivachandra <sivachandra>2013-01-25 22:31:40 +0000
commitf237e6333de59daa74df1273b9e7b22424a39088 (patch)
tree402dcee136ab03e995c764a9e4cdc71141851c34 /gdb/eval.c
parent5708ea0f50ecfcd70e12bcd904ba5e75e3c1edcb (diff)
downloadgdb-f237e6333de59daa74df1273b9e7b22424a39088.tar.gz
* valops.c (find_overload_match): Remove unused argument 'lax'.
* value.h: Remove unused argument 'lax' from the declaration of find_overload_match. * eval.c (value_subexp_standard): Do not pass a 'lax' argument to find_overload_match. * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax' argument to find_overload_match.
Diffstat (limited to 'gdb/eval.c')
-rw-r--r--gdb/eval.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/gdb/eval.c b/gdb/eval.c
index c9630df1ebd..f4b39cbc2b0 100644
--- a/gdb/eval.c
+++ b/gdb/eval.c
@@ -1590,7 +1590,6 @@ evaluate_subexp_standard (struct type *expect_type,
find_overload_match (&argvec[1], nargs, func_name,
NON_METHOD, /* not method */
- 0, /* strict match */
NULL, NULL, /* pass NULL symbol since
symbol is unknown */
NULL, &symp, NULL, 0);
@@ -1626,7 +1625,6 @@ evaluate_subexp_standard (struct type *expect_type,
(void) find_overload_match (&argvec[1], nargs, tstr,
METHOD, /* method */
- 0, /* strict match */
&arg2, /* the object */
NULL, &valp, NULL,
&static_memfuncp, 0);
@@ -1698,7 +1696,6 @@ evaluate_subexp_standard (struct type *expect_type,
(void) find_overload_match (&argvec[1], nargs,
NULL, /* no need for name */
NON_METHOD, /* not method */
- 0, /* strict match */
NULL, function, /* the function */
NULL, &symp, NULL, no_adl);