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 @@ -82,6 +82,10 @@ class CommandPluginInterfaceImplementation : public CommandObjectParsed {
82
82
};
83
83
} // namespace lldb_private
84
84
85
+ SBCommandInterpreter::SBCommandInterpreter () : m_opaque_ptr() {
86
+ LLDB_INSTRUMENT_VA (this );
87
+ }
88
+
85
89
SBCommandInterpreter::SBCommandInterpreter (CommandInterpreter *interpreter)
86
90
: m_opaque_ptr(interpreter) {
87
91
LLDB_INSTRUMENT_VA (this , interpreter);
You can’t perform that action at this time.
0 commit comments