llvmbot wrote:

<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-lldb

Author: Chelsea Cassanova (chelcassanova)

<details>
<summary>Changes</summary>

SBBreakpointName has a typedef for BreakpointHitCallback used in SetCallback(), 
but this typedef has been commented out in SBBreakpointName and added instead 
to SBDefines. Since SB API callbacks are placed in SBDefines, this commit 
removes this commented out portion.

---
Full diff: https://github.com/llvm/llvm-project/pull/116434.diff


1 Files Affected:

- (modified) lldb/include/lldb/API/SBBreakpointName.h (-4) 


``````````diff
diff --git a/lldb/include/lldb/API/SBBreakpointName.h 
b/lldb/include/lldb/API/SBBreakpointName.h
index 838c66385bd121..4b7ad0cce345e5 100644
--- a/lldb/include/lldb/API/SBBreakpointName.h
+++ b/lldb/include/lldb/API/SBBreakpointName.h
@@ -17,10 +17,6 @@ namespace lldb {
 
 class LLDB_API SBBreakpointName {
 public:
-//  typedef bool (*BreakpointHitCallback)(void *baton, SBProcess &process,
-//                                        SBThread &thread,
-//                                        lldb::SBBreakpointLocation 
&location);
-
   SBBreakpointName();
   
   SBBreakpointName(SBTarget &target, const char *name);

``````````

</details>


https://github.com/llvm/llvm-project/pull/116434
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to