mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 02:24:17 +08:00
Remove an unused declaration from value.h
value.h has a declaration of value_print_array_elements that is incorrect. In C, this would have been an error, but in C++ this is a declaration of an overload that is neither defined nor used. This patch removes the declaration.
This commit is contained in:
@ -1089,10 +1089,6 @@ extern void print_floating (const gdb_byte *valaddr, struct type *type,
|
|||||||
extern void value_print (struct value *val, struct ui_file *stream,
|
extern void value_print (struct value *val, struct ui_file *stream,
|
||||||
const struct value_print_options *options);
|
const struct value_print_options *options);
|
||||||
|
|
||||||
extern void value_print_array_elements (struct value *val,
|
|
||||||
struct ui_file *stream, int format,
|
|
||||||
enum val_prettyformat pretty);
|
|
||||||
|
|
||||||
/* Release values from the value chain and return them. Values
|
/* Release values from the value chain and return them. Values
|
||||||
created after MARK are released. If MARK is nullptr, or if MARK is
|
created after MARK are released. If MARK is nullptr, or if MARK is
|
||||||
not found on the value chain, then all values are released. Values
|
not found on the value chain, then all values are released. Values
|
||||||
|
Reference in New Issue
Block a user