]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Minor formatting fix in breakpoint.c
authorTom Tromey <tromey@adacore.com>
Fri, 30 Aug 2024 16:38:22 +0000 (10:38 -0600)
committerTom Tromey <tromey@adacore.com>
Fri, 30 Aug 2024 16:38:22 +0000 (10:38 -0600)
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

index 0871585384672d01ca1f0a3e66e6bbf0d984d005..f06c3c26d8504a95089117a6e52d1e7f12bb5d0b 100644 (file)
@@ -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 ());
 }