aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2024-08-30 10:38:22 -0600
committerTom Tromey <tromey@adacore.com>2024-08-30 10:38:22 -0600
commit71e0850800c70e5a7b8c9fd7d4065d2f7853262e (patch)
treee02f514198a6d7bffff5e9e82d1225998bb8dcb7
parentbcae3bb6509e1111c2859c6b24306aefecdd2570 (diff)
downloadbinutils-71e0850800c70e5a7b8c9fd7d4065d2f7853262e.zip
binutils-71e0850800c70e5a7b8c9fd7d4065d2f7853262e.tar.gz
binutils-71e0850800c70e5a7b8c9fd7d4065d2f7853262e.tar.bz2
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.
-rw-r--r--gdb/breakpoint.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index 0871585..f06c3c2 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 ());
}