[pushed] Minor formatting fix in breakpoint.c
Checks
Commit Message
I noticed a spot in breakpoint.c that doesn't follow gdb's formatting
rules: the return type is on the same line as the method name.
---
gdb/breakpoint.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
@@ -11867,7 +11867,8 @@ code_breakpoint::say_where () const
/* See breakpoint.h. */
-bp_location_range breakpoint::locations () const
+bp_location_range
+breakpoint::locations () const
{
return bp_location_range (m_locations.begin (), m_locations.end ());
}