From: Tom Tromey Date: Fri, 30 Aug 2024 16:38:22 +0000 (-0600) Subject: Minor formatting fix in breakpoint.c X-Git-Tag: gdb-16-branchpoint~1024 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=71e0850800c70e5a7b8c9fd7d4065d2f7853262e;p=thirdparty%2Fbinutils-gdb.git Minor formatting fix in breakpoint.c 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. --- diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 08715853846..f06c3c26d85 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -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 ()); }