Skip to content

Commit 53235b3

Browse files
author
git apple-llvm automerger
committed
Merge commit 'e908a0099ce3' from llvm.org/release/19.x into stable/20240723
2 parents 978f39e + e908a00 commit 53235b3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lldb/include/lldb/API/SBSaveCoreOptions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class LLDB_API SBSaveCoreOptions {
1717
public:
1818
SBSaveCoreOptions();
1919
SBSaveCoreOptions(const lldb::SBSaveCoreOptions &rhs);
20-
~SBSaveCoreOptions() = default;
20+
~SBSaveCoreOptions();
2121

2222
const SBSaveCoreOptions &operator=(const lldb::SBSaveCoreOptions &rhs);
2323

lldb/source/API/SBSaveCoreOptions.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ SBSaveCoreOptions::SBSaveCoreOptions(const SBSaveCoreOptions &rhs) {
2929
m_opaque_up = clone(rhs.m_opaque_up);
3030
}
3131

32+
SBSaveCoreOptions::~SBSaveCoreOptions() = default;
33+
3234
const SBSaveCoreOptions &
3335
SBSaveCoreOptions::operator=(const SBSaveCoreOptions &rhs) {
3436
LLDB_INSTRUMENT_VA(this, rhs);

0 commit comments

Comments
 (0)