diff options
author | Tom Tromey <tom@tromey.com> | 2023-02-14 09:37:47 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-02-15 15:07:07 -0700 |
commit | a5b210cb6980f6aa38ae339aeef40c82799822a1 (patch) | |
tree | e295483b6de278f20b1ac20e71ae3b58238364c9 /gdb/gnu-v2-abi.c | |
parent | b2227e67b4bdee65b1240f725dd2ea214178d984 (diff) | |
download | binutils-a5b210cb6980f6aa38ae339aeef40c82799822a1.zip binutils-a5b210cb6980f6aa38ae339aeef40c82799822a1.tar.gz binutils-a5b210cb6980f6aa38ae339aeef40c82799822a1.tar.bz2 |
Change value::m_lazy to bool
This changes value::m_lazy to be a bool and updates the various uses.
Reviewed-By: Bruno Larsen <blarsen@redhat.com>
Diffstat (limited to 'gdb/gnu-v2-abi.c')
-rw-r--r-- | gdb/gnu-v2-abi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gnu-v2-abi.c b/gdb/gnu-v2-abi.c index fa46d47..6afa179 100644 --- a/gdb/gnu-v2-abi.c +++ b/gdb/gnu-v2-abi.c @@ -163,7 +163,7 @@ gnuv2_virtual_fn_field (struct value **arg1p, struct fn_field * f, int j, if (!arg1->lazy ()) { - arg1->set_lazy (1); + arg1->set_lazy (true); arg1->fetch_lazy (); } |