[Lldb-commits] [lldb] [lldb] Remove declarations of non-existent constructors (NFC) (PR #191622)
Sergei Barannikov via lldb-commits
lldb-commits at lists.llvm.org
Sat Apr 11 04:55:30 PDT 2026
https://github.com/s-barannikov created https://github.com/llvm/llvm-project/pull/191622
They have never existed since the initial public checkin.
>From 5896a720e4bde1eaffe80df9ad9caea14d24d42f Mon Sep 17 00:00:00 2001
From: Sergei Barannikov <barannikov88 at gmail.com>
Date: Sat, 11 Apr 2026 14:54:48 +0300
Subject: [PATCH] [lldb] Remove declarations of non-existent constructors (NFC)
They have never existed since the initial public checkin.
---
lldb/include/lldb/Target/ExecutionContext.h | 23 ---------------------
1 file changed, 23 deletions(-)
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