[Lldb-commits] [PATCH] D142150: [lldb] Remove timer from SBModule copy ctor
Dave Lee via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Jan 20 13:00:02 PST 2023
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rG84c6129c9431: [lldb] Remove timer from SBModule copy ctor (authored by kastiglione).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D142150/new/
https://reviews.llvm.org/D142150
Files:
lldb/source/API/SBModule.cpp
Index: lldb/source/API/SBModule.cpp
===================================================================
--- lldb/source/API/SBModule.cpp
+++ lldb/source/API/SBModule.cpp
@@ -43,9 +43,7 @@
SetSP(module_sp);
}
-SBModule::SBModule(const SBModule &rhs) : m_opaque_sp(rhs.m_opaque_sp) {
- LLDB_INSTRUMENT_VA(this, rhs);
-}
+SBModule::SBModule(const SBModule &rhs) = default;
SBModule::SBModule(lldb::SBProcess &process, lldb::addr_t header_addr) {
LLDB_INSTRUMENT_VA(this, process, header_addr);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D142150.490950.patch
Type: text/x-patch
Size: 506 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230120/b1365458/attachment.bin>
More information about the lldb-commits
mailing list