diff options
-rw-r--r-- | lldb/source/Commands/CommandObjectArgs.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Commands/CommandObjectExpression.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Commands/CommandObjectFrame.cpp | 4 | ||||
-rw-r--r-- | lldb/source/Commands/CommandObjectImage.cpp | 6 |
4 files changed, 7 insertions, 7 deletions
diff --git a/lldb/source/Commands/CommandObjectArgs.cpp b/lldb/source/Commands/CommandObjectArgs.cpp index 26ffa19c7a4..6064ec8dbc6 100644 --- a/lldb/source/Commands/CommandObjectArgs.cpp +++ b/lldb/source/Commands/CommandObjectArgs.cpp @@ -37,7 +37,7 @@ using namespace lldb_private; // CommandObjectArgs::CommandOptions::CommandOptions (CommandInterpreter &interpreter) : - Options(m_interpreter) + Options(interpreter) { // Keep only one place to reset the values to their defaults ResetOptionValues(); diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index 5e5f96898b4..31ecaf106d2 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -38,7 +38,7 @@ using namespace lldb; using namespace lldb_private; CommandObjectExpression::CommandOptions::CommandOptions (CommandInterpreter &interpreter) : - Options(m_interpreter) + Options(interpreter) { // Keep only one place to reset the values to their defaults ResetOptionValues(); diff --git a/lldb/source/Commands/CommandObjectFrame.cpp b/lldb/source/Commands/CommandObjectFrame.cpp index 3b697fd52cb..aaaee06c4be 100644 --- a/lldb/source/Commands/CommandObjectFrame.cpp +++ b/lldb/source/Commands/CommandObjectFrame.cpp @@ -100,7 +100,7 @@ public: public: CommandOptions (CommandInterpreter &interpreter) : - Options(m_interpreter) + Options(interpreter) { ResetOptionValues (); } @@ -291,7 +291,7 @@ public: public: CommandOptions (CommandInterpreter &interpreter) : - Options(m_interpreter) + Options(interpreter) { ResetOptionValues (); } diff --git a/lldb/source/Commands/CommandObjectImage.cpp b/lldb/source/Commands/CommandObjectImage.cpp index a59aff00d9c..3d005a80526 100644 --- a/lldb/source/Commands/CommandObjectImage.cpp +++ b/lldb/source/Commands/CommandObjectImage.cpp @@ -721,7 +721,7 @@ public: public: CommandOptions (CommandInterpreter &interpreter) : - Options(m_interpreter), + Options(interpreter), m_sort_order (eSortOrderNone) { } @@ -1142,7 +1142,7 @@ public: public: CommandOptions (CommandInterpreter &interpreter) : - Options(m_interpreter), + Options(interpreter), m_format_array() { } @@ -1349,7 +1349,7 @@ public: public: CommandOptions (CommandInterpreter &interpreter) : - Options(m_interpreter) + Options(interpreter) { ResetOptionValues(); } |