From 317c3ed9fc9bc5dacd267d131e8c9ca7c1cbdced Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 31 Jan 2023 13:25:17 -0700 Subject: Turn allocate_value into a static "constructor" This changes allocate_value to be a static "constructor" of value. Approved-By: Simon Marchi --- gdb/cp-valprint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/cp-valprint.c') diff --git a/gdb/cp-valprint.c b/gdb/cp-valprint.c index ebed52c..268a414 100644 --- a/gdb/cp-valprint.c +++ b/gdb/cp-valprint.c @@ -761,7 +761,7 @@ test_print_fields (gdbarch *arch) FIELD_BITSIZE (*f) = 1; } - value *val = allocate_value (the_struct); + value *val = value::allocate (the_struct); gdb_byte *contents = value_contents_writeable (val).data (); store_unsigned_integer (contents, val->enclosing_type ()->length (), gdbarch_byte_order (arch), 0xe9); -- cgit v1.1