From 709438c75abc52cdc4888e7eaa089c2709c75a07 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Fri, 27 May 2022 16:44:02 +0100 Subject: Convert location_spec_to_string to a method This converts location_spec_to_string to a method of location_spec, simplifying the code using it, as it no longer has to use std::unique_ptr::get(). Change-Id: I621bdad8ea084470a2724163f614578caf8f2dd5 --- gdb/python/py-breakpoint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/python/py-breakpoint.c') diff --git a/gdb/python/py-breakpoint.c b/gdb/python/py-breakpoint.c index bab1c60..2b9f6f3 100644 --- a/gdb/python/py-breakpoint.c +++ b/gdb/python/py-breakpoint.c @@ -412,7 +412,7 @@ bppy_get_location (PyObject *self, void *closure) && obj->bp->type != bp_hardware_breakpoint) Py_RETURN_NONE; - const char *str = location_spec_to_string (obj->bp->locspec.get ()); + const char *str = obj->bp->locspec->to_string (); if (str == nullptr) str = ""; return host_string_to_python_string (str).release (); -- cgit v1.1