From 706b4fc47bbc608932d3b491ae19a3b9cde9497b Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Fri, 17 Jan 2020 20:45:01 +0000 Subject: Vendor import of llvm-project master e26a78e70, the last commit before the llvmorg-11-init tag, from which release/10.x was branched. --- lldb/source/Commands/CommandObjectBreakpoint.h | 29 ++++++++------------------ 1 file changed, 9 insertions(+), 20 deletions(-) (limited to 'lldb/source/Commands/CommandObjectBreakpoint.h') diff --git a/lldb/source/Commands/CommandObjectBreakpoint.h b/lldb/source/Commands/CommandObjectBreakpoint.h index cba1f3f774ee..b29bbc0a74fa 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.h +++ b/lldb/source/Commands/CommandObjectBreakpoint.h @@ -10,16 +10,8 @@ #define liblldb_CommandObjectBreakpoint_h_ -#include -#include - -#include "lldb/lldb-private.h" #include "lldb/Breakpoint/BreakpointName.h" -#include "lldb/Core/Address.h" -#include "lldb/Core/STLUtils.h" #include "lldb/Interpreter/CommandObjectMultiword.h" -#include "lldb/Interpreter/Options.h" - namespace lldb_private { @@ -31,19 +23,17 @@ public: ~CommandObjectMultiwordBreakpoint() override; - static void VerifyBreakpointOrLocationIDs(Args &args, Target *target, - CommandReturnObject &result, - BreakpointIDList *valid_ids, - BreakpointName::Permissions - ::PermissionKinds purpose) { + static void VerifyBreakpointOrLocationIDs( + Args &args, Target *target, CommandReturnObject &result, + BreakpointIDList *valid_ids, + BreakpointName::Permissions ::PermissionKinds purpose) { VerifyIDs(args, target, true, result, valid_ids, purpose); } - static void VerifyBreakpointIDs(Args &args, Target *target, - CommandReturnObject &result, - BreakpointIDList *valid_ids, - BreakpointName::Permissions::PermissionKinds - purpose) { + static void + VerifyBreakpointIDs(Args &args, Target *target, CommandReturnObject &result, + BreakpointIDList *valid_ids, + BreakpointName::Permissions::PermissionKinds purpose) { VerifyIDs(args, target, false, result, valid_ids, purpose); } @@ -51,8 +41,7 @@ private: static void VerifyIDs(Args &args, Target *target, bool allow_locations, CommandReturnObject &result, BreakpointIDList *valid_ids, - BreakpointName::Permissions::PermissionKinds - purpose); + BreakpointName::Permissions::PermissionKinds purpose); }; } // namespace lldb_private -- cgit v1.2.3