aboutsummaryrefslogtreecommitdiff
path: root/gdb/value.h
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2002-01-04 17:51:38 +0000
committerDaniel Jacobowitz <drow@false.org>2002-01-04 17:51:38 +0000
commit7f8c9282581cbc3f7e13d8c5a6f20e086bf2ad7b (patch)
tree608b223fb0e33b72cf730ca953d5fc135a59f7e3 /gdb/value.h
parenta3aa38ee6cb3da7e2759d852e1d4afccd9ca9aa3 (diff)
downloadgdb-7f8c9282581cbc3f7e13d8c5a6f20e086bf2ad7b.zip
gdb-7f8c9282581cbc3f7e13d8c5a6f20e086bf2ad7b.tar.gz
gdb-7f8c9282581cbc3f7e13d8c5a6f20e086bf2ad7b.tar.bz2
2002-01-04 Daniel Jacobowitz <drow@mvista.com>
* valops.c (find_overload_match): Accept obj as a reference parameter. Update it before returning. * value.h (find_overload_match): Update prototype. * eval.c (evaluate_subexp_standard): Pass object to find_overload_match by reference.
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 006ec11..a6a517c 100644
--- a/gdb/value.h
+++ b/gdb/value.h
@@ -388,7 +388,7 @@ extern struct fn_field *value_find_oload_method_list (struct value **, char *,
extern int find_overload_match (struct type **arg_types, int nargs,
char *name, int method, int lax,
- struct value *obj, struct symbol *fsym,
+ struct value **objp, struct symbol *fsym,
struct value **valp, struct symbol **symp,
int *staticp);