We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 978f39e + e908a00 commit 53235b3Copy full SHA for 53235b3
lldb/include/lldb/API/SBSaveCoreOptions.h
@@ -17,7 +17,7 @@ class LLDB_API SBSaveCoreOptions {
17
public:
18
SBSaveCoreOptions();
19
SBSaveCoreOptions(const lldb::SBSaveCoreOptions &rhs);
20
- ~SBSaveCoreOptions() = default;
+ ~SBSaveCoreOptions();
21
22
const SBSaveCoreOptions &operator=(const lldb::SBSaveCoreOptions &rhs);
23
lldb/source/API/SBSaveCoreOptions.cpp
@@ -29,6 +29,8 @@ SBSaveCoreOptions::SBSaveCoreOptions(const SBSaveCoreOptions &rhs) {
29
m_opaque_up = clone(rhs.m_opaque_up);
30
}
31
32
+SBSaveCoreOptions::~SBSaveCoreOptions() = default;
33
+
34
const SBSaveCoreOptions &
35
SBSaveCoreOptions::operator=(const SBSaveCoreOptions &rhs) {
36
LLDB_INSTRUMENT_VA(this, rhs);
0 commit comments