diff options
author | Siva Chandra Reddy <sivachandra@sourceware.org> | 2013-01-25 22:31:43 +0000 |
---|---|---|
committer | Siva Chandra Reddy <sivachandra@sourceware.org> | 2013-01-25 22:31:43 +0000 |
commit | 28c64fc2c0e1232b1c2b962139ca11e690e7633c (patch) | |
tree | 14d79230f402fd34f9ad9c616958b3b1173f44b8 /gdb/value.h | |
parent | fab128efbbbbc9fca50b7421c28f3306c7deacbf (diff) | |
download | gdb-28c64fc2c0e1232b1c2b962139ca11e690e7633c.zip gdb-28c64fc2c0e1232b1c2b962139ca11e690e7633c.tar.gz gdb-28c64fc2c0e1232b1c2b962139ca11e690e7633c.tar.bz2 |
* 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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/value.h b/gdb/value.h index 5825f6e..97ceeab 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); |