File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ class SBCommandInterpreter {
30
30
eBroadcastBitAsynchronousErrorData = (1 << 4 )
31
31
};
32
32
33
+ SBCommandInterpreter ();
33
34
SBCommandInterpreter (const lldb::SBCommandInterpreter &rhs);
34
35
35
36
~SBCommandInterpreter ();
@@ -317,9 +318,8 @@ class SBCommandInterpreter {
317
318
protected:
318
319
friend class lldb_private ::CommandPluginInterfaceImplementation;
319
320
320
- SBCommandInterpreter (
321
- lldb_private::CommandInterpreter *interpreter_ptr =
322
- nullptr ); // Access using SBDebugger::GetCommandInterpreter();
321
+ // / Access using SBDebugger::GetCommandInterpreter();
322
+ SBCommandInterpreter (lldb_private::CommandInterpreter *interpreter_ptr);
323
323
lldb_private::CommandInterpreter &ref ();
324
324
325
325
lldb_private::CommandInterpreter *get ();
Original file line number Diff line number Diff line change @@ -83,6 +83,10 @@ class CommandPluginInterfaceImplementation : public CommandObjectParsed {
83
83
};
84
84
} // namespace lldb_private
85
85
86
+ SBCommandInterpreter::SBCommandInterpreter () : m_opaque_ptr() {
87
+ LLDB_INSTRUMENT_VA (this );
88
+ }
89
+
86
90
SBCommandInterpreter::SBCommandInterpreter (CommandInterpreter *interpreter)
87
91
: m_opaque_ptr(interpreter) {
88
92
LLDB_INSTRUMENT_VA (this , interpreter);
You can’t perform that action at this time.
0 commit comments