summaryrefslogtreecommitdiff
path: root/gdb/value.h
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/value.h
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/value.h')
-rw-r--r--gdb/value.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/value.h b/gdb/value.h
index 5825f6eca1f..97ceeab5c7d 100644
--- a/gdb/value.h
+++ b/gdb/value.h
@@ -651,7 +651,7 @@ enum oload_search_type { NON_METHOD, METHOD, BOTH };
extern int find_overload_match (struct value **args, int nargs,
const char *name,
- enum oload_search_type method, int lax,
+ enum oload_search_type method,
struct value **objp, struct symbol *fsym,
struct value **valp, struct symbol **symp,
int *staticp, const int no_adl);