diff options
Diffstat (limited to 'gdb/cp-abi.c')
-rw-r--r-- | gdb/cp-abi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/cp-abi.c b/gdb/cp-abi.c index f82da4b..8e54538 100644 --- a/gdb/cp-abi.c +++ b/gdb/cp-abi.c @@ -79,7 +79,7 @@ baseclass_offset (struct type *type, int index, const gdb_byte *valaddr, embedded_offset, address, val); } - catch (const gdb_exception_RETURN_MASK_ERROR &ex) + catch (const gdb_exception_error &ex) { if (ex.error != NOT_AVAILABLE_ERROR) throw_exception (ex); @@ -115,7 +115,7 @@ value_rtti_type (struct value *v, int *full, { ret = (*current_cp_abi.rtti_type) (v, full, top, using_enc); } - catch (const gdb_exception_RETURN_MASK_ERROR &e) + catch (const gdb_exception_error &e) { return NULL; } |