summaryrefslogtreecommitdiff
path: root/gdb/valarith.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/valarith.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/valarith.c')
-rw-r--r--gdb/valarith.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/valarith.c b/gdb/valarith.c
index 894a87ac048..bdc98fffe31 100644
--- a/gdb/valarith.c
+++ b/gdb/valarith.c
@@ -294,7 +294,7 @@ value_user_defined_cpp_op (struct value **args, int nargs, char *operator,
struct value *valp = NULL;
find_overload_match (args, nargs, operator, BOTH /* could be method */,
- 0 /* strict match */, &args[0], /* objp */
+ &args[0] /* objp */,
NULL /* pass NULL symbol since symbol is unknown */,
&valp, &symp, static_memfuncp, 0);