aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectLog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Commands/CommandObjectLog.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectLog.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectLog.cpp b/lldb/source/Commands/CommandObjectLog.cpp
index 383e299..b10e8ec 100644
--- a/lldb/source/Commands/CommandObjectLog.cpp
+++ b/lldb/source/Commands/CommandObjectLog.cpp
@@ -62,7 +62,8 @@ public:
CommandObject (interpreter,
"log enable",
"Enable logging for a single log channel.",
- NULL)
+ NULL),
+ m_options (interpreter)
{
CommandArgumentEntry arg1;
@@ -168,8 +169,8 @@ public:
{
public:
- CommandOptions () :
- Options (),
+ CommandOptions (CommandInterpreter &interpreter) :
+ Options (interpreter),
log_file (),
log_options (0)
{