Really fix the test suite crasher this time.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@129165 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectArgs.cpp b/source/Commands/CommandObjectArgs.cpp
index 26ffa19..6064ec8 100644
--- a/source/Commands/CommandObjectArgs.cpp
+++ b/source/Commands/CommandObjectArgs.cpp
@@ -37,7 +37,7 @@
//
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/source/Commands/CommandObjectExpression.cpp b/source/Commands/CommandObjectExpression.cpp
index 5e5f968..31ecaf1 100644
--- a/source/Commands/CommandObjectExpression.cpp
+++ b/source/Commands/CommandObjectExpression.cpp
@@ -38,7 +38,7 @@
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/source/Commands/CommandObjectFrame.cpp b/source/Commands/CommandObjectFrame.cpp
index 3b697fd..aaaee06 100644
--- a/source/Commands/CommandObjectFrame.cpp
+++ b/source/Commands/CommandObjectFrame.cpp
@@ -100,7 +100,7 @@
public:
CommandOptions (CommandInterpreter &interpreter) :
- Options(m_interpreter)
+ Options(interpreter)
{
ResetOptionValues ();
}
@@ -291,7 +291,7 @@
public:
CommandOptions (CommandInterpreter &interpreter) :
- Options(m_interpreter)
+ Options(interpreter)
{
ResetOptionValues ();
}
diff --git a/source/Commands/CommandObjectImage.cpp b/source/Commands/CommandObjectImage.cpp
index a59aff0..3d005a8 100644
--- a/source/Commands/CommandObjectImage.cpp
+++ b/source/Commands/CommandObjectImage.cpp
@@ -721,7 +721,7 @@
public:
CommandOptions (CommandInterpreter &interpreter) :
- Options(m_interpreter),
+ Options(interpreter),
m_sort_order (eSortOrderNone)
{
}
@@ -1142,7 +1142,7 @@
public:
CommandOptions (CommandInterpreter &interpreter) :
- Options(m_interpreter),
+ Options(interpreter),
m_format_array()
{
}
@@ -1349,7 +1349,7 @@
public:
CommandOptions (CommandInterpreter &interpreter) :
- Options(m_interpreter)
+ Options(interpreter)
{
ResetOptionValues();
}