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 {
3030 eBroadcastBitAsynchronousErrorData = (1 << 4 )
3131 };
3232
33+ SBCommandInterpreter ();
3334 SBCommandInterpreter (const lldb::SBCommandInterpreter &rhs);
3435
3536 ~SBCommandInterpreter ();
@@ -317,9 +318,8 @@ class SBCommandInterpreter {
317318protected:
318319 friend class lldb_private ::CommandPluginInterfaceImplementation;
319320
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);
323323 lldb_private::CommandInterpreter &ref ();
324324
325325 lldb_private::CommandInterpreter *get ();
Original file line number Diff line number Diff line change @@ -82,6 +82,10 @@ class CommandPluginInterfaceImplementation : public CommandObjectParsed {
8282};
8383} // namespace lldb_private
8484
85+ SBCommandInterpreter::SBCommandInterpreter () : m_opaque_ptr() {
86+ LLDB_INSTRUMENT_VA (this );
87+ }
88+
8589SBCommandInterpreter::SBCommandInterpreter (CommandInterpreter *interpreter)
8690 : m_opaque_ptr(interpreter) {
8791 LLDB_INSTRUMENT_VA (this , interpreter);
You can’t perform that action at this time.
0 commit comments