[Lldb-commits] [lldb] 80d72ae - [lldb] Remove declarations of two non-existent constructors (NFC) (#191622)

via lldb-commits lldb-commits at lists.llvm.org
Mon Apr 13 05:55:42 PDT 2026


Author: Sergei Barannikov
Date: 2026-04-13T15:55:38+03:00
New Revision: 80d72ae2cec9b7625e537a917d11af04c50699a6

URL: https://github.com/llvm/llvm-project/commit/80d72ae2cec9b7625e537a917d11af04c50699a6
DIFF: https://github.com/llvm/llvm-project/commit/80d72ae2cec9b7625e537a917d11af04c50699a6.diff

LOG: [lldb] Remove declarations of two non-existent constructors (NFC) (#191622)

They have never existed since the initial public checkin.

Added: 
    

Modified: 
    lldb/include/lldb/Target/ExecutionContext.h

Removed: 
    


################################################################################
diff  --git a/lldb/include/lldb/Target/ExecutionContext.h b/lldb/include/lldb/Target/ExecutionContext.h
index 47bcd729abcdd..bf976f4db8c87 100644
--- a/lldb/include/lldb/Target/ExecutionContext.h
+++ b/lldb/include/lldb/Target/ExecutionContext.h
@@ -110,29 +110,6 @@ class ExecutionContextRef {
   /// frame.
   ExecutionContextRef(Thread *thread, bool adopt_selected);
 
-  /// Construct using an execution context scope.
-  ///
-  /// If the ExecutionContextScope object is valid and refers to a frame, make
-  /// weak references too the frame, thread, process and target. If the
-  /// ExecutionContextScope object is valid and refers to a thread, make weak
-  /// references too the thread, process and target. If the
-  /// ExecutionContextScope object is valid and refers to a process, make weak
-  /// references too the process and target. If the ExecutionContextScope
-  /// object is valid and refers to a target, make weak references too the
-  /// target.
-  ExecutionContextRef(ExecutionContextScope *exe_scope);
-
-  /// Construct using an execution context scope.
-  ///
-  /// If the ExecutionContextScope object refers to a frame, make weak
-  /// references too the frame, thread, process and target. If the
-  /// ExecutionContextScope object refers to a thread, make weak references
-  /// too the thread, process and target. If the ExecutionContextScope object
-  /// refers to a process, make weak references too the process and target. If
-  /// the ExecutionContextScope object refers to a target, make weak
-  /// references too the target.
-  ExecutionContextRef(ExecutionContextScope &exe_scope);
-
   ~ExecutionContextRef();
 
   /// Assignment operator


        


More information about the lldb-commits mailing list