From 50f8a39878d6c8cf4dfcb1d3333aa2a20daada0c Mon Sep 17 00:00:00 2001 From: Tom de Vries Date: Thu, 22 Aug 2024 09:49:53 +0200 Subject: [gdb] Add const to catch gdb_exception I did a review of lines containing "catch (gdb_exception" and found a few where we can add const. Tested on x86_64-linux. Approved-By: Tom Tromey --- gdb/python/py-value.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/python/py-value.c') diff --git a/gdb/python/py-value.c b/gdb/python/py-value.c index 5c62ef6..4980076 100644 --- a/gdb/python/py-value.c +++ b/gdb/python/py-value.c @@ -1178,7 +1178,7 @@ valpy_getitem (PyObject *self, PyObject *key) if (res_val) result = value_to_value_object (res_val); } - catch (gdb_exception &ex) + catch (const gdb_exception &ex) { GDB_PY_HANDLE_EXCEPTION (ex); } @@ -1704,7 +1704,7 @@ valpy_nonzero (PyObject *self) /* All other values are True. */ nonzero = 1; } - catch (gdb_exception &ex) + catch (const gdb_exception &ex) { /* This is not documented in the Python documentation, but if this function fails, return -1 as slot_nb_nonzero does (the -- cgit v1.1