@@ -248,8 +248,8 @@ class Breakpoint : public std::enable_shared_from_this<Breakpoint>,
248248 // / Returns a pointer to the new location.
249249 lldb::BreakpointLocationSP AddLocation (const Address &addr,
250250 bool *new_location = nullptr );
251- // / Add a `facade` location to the breakpoint's collection of facade locations.
252- // / This is only meant to be called by the breakpoint's resolver.
251+ // / Add a `facade` location to the breakpoint's collection of facade
252+ // / locations. This is only meant to be called by the breakpoint's resolver.
253253 // / Facade locations are placeholders that a scripted breakpoint can use to
254254 // / represent the stop locations provided by the breakpoint. The scripted
255255 // / breakpoint should record the id of the facade location, and provide
@@ -263,7 +263,7 @@ class Breakpoint : public std::enable_shared_from_this<Breakpoint>,
263263 // / \return
264264 // / Returns a pointer to the new location.
265265 lldb::BreakpointLocationSP AddFacadeLocation ();
266-
266+
267267 lldb::BreakpointLocationSP GetFacadeLocationByID (lldb::break_id_t );
268268
269269 // / Find a breakpoint location by Address.
@@ -293,28 +293,30 @@ class Breakpoint : public std::enable_shared_from_this<Breakpoint>,
293293 // / The ID specifying the location.
294294 // /
295295 // / \param[in] use_facade
296- // / If \b true, then prefer facade locations over "real" ones if they exist.
296+ // / If \b true, then prefer facade locations over "real" ones if they exist.
297297 // /
298298 // / \return
299299 // / Returns a shared pointer to the location with ID \a bp_loc_id. The
300300 // / pointer
301301 // / in the shared pointer will be nullptr if there is no location with that
302302 // / ID.
303- lldb::BreakpointLocationSP FindLocationByID (lldb::break_id_t bp_loc_id, bool use_facade = true );
303+ lldb::BreakpointLocationSP FindLocationByID (lldb::break_id_t bp_loc_id,
304+ bool use_facade = true );
304305
305306 // / Get breakpoint locations by index.
306307 // /
307308 // / \param[in] index
308309 // / The location index.
309310 // /
310311 // / \param[in] use_facade
311- // / If \b true, then prefer facade locations over "real" ones if they exist.
312+ // / If \b true, then prefer facade locations over "real" ones if they exist.
312313 // /
313314 // / \return
314315 // / Returns a shared pointer to the location with index \a
315316 // / index. The shared pointer might contain nullptr if \a index is
316317 // / greater than then number of actual locations.
317- lldb::BreakpointLocationSP GetLocationAtIndex (size_t index, bool use_facade = true );
318+ lldb::BreakpointLocationSP GetLocationAtIndex (size_t index,
319+ bool use_facade = true );
318320
319321 // / Removes all invalid breakpoint locations.
320322 // /
@@ -436,7 +438,7 @@ class Breakpoint : public std::enable_shared_from_this<Breakpoint>,
436438 // / breakpoint sites.
437439 // /
438440 // / \param[in] use_facade
439- // / If \b true, then prefer facade locations over "real" ones if they exist.
441+ // / If \b true, then prefer facade locations over "real" ones if they exist.
440442 // /
441443 // / \return
442444 // / The number locations resolved breakpoint sites.
@@ -451,7 +453,7 @@ class Breakpoint : public std::enable_shared_from_this<Breakpoint>,
451453 // / Return the number of breakpoint locations.
452454 // /
453455 // / \param[in] use_facade
454- // / If \b true, then prefer facade locations over "real" ones if they exist.
456+ // / If \b true, then prefer facade locations over "real" ones if they exist.
455457 // /
456458 // / \return
457459 // / The number breakpoint locations.
@@ -563,17 +565,14 @@ class Breakpoint : public std::enable_shared_from_this<Breakpoint>,
563565
564566 enum TypeDisplay {
565567 eDisplayFacade = 1 ,
566- eDisplayReal = 1 << 1 ,
568+ eDisplayReal = 1 << 1 ,
567569 eDisplayHeader = 1 << 2
568570 };
569571
570572 void GetDescriptionForType (Stream *s, lldb::DescriptionLevel level,
571- uint8_t display_type, bool show_locations);
572-
573- bool HasFacadeLocations () {
574- return m_facade_locations.GetSize () != 0 ;
575- }
573+ uint8_t display_type, bool show_locations);
576574
575+ bool HasFacadeLocations () { return m_facade_locations.GetSize () != 0 ; }
577576
578577public:
579578 bool MatchesName (const char *name) {
0 commit comments