diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-04-08 22:39:17 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-04-08 22:39:17 +0000 |
commit | f16066e842df736ebbbd06c46a37c4221ca71e4e (patch) | |
tree | f44197cdf3eff42507898819aa03e41a933adb9d /lldb/source/Commands/CommandObjectFrame.cpp | |
parent | 298de937e727db7e5a1526d70504200cd403db28 (diff) | |
download | bcm5719-llvm-f16066e842df736ebbbd06c46a37c4221ca71e4e.tar.gz bcm5719-llvm-f16066e842df736ebbbd06c46a37c4221ca71e4e.zip |
Really fix the test suite crasher this time.
llvm-svn: 129165
Diffstat (limited to 'lldb/source/Commands/CommandObjectFrame.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectFrame.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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 (); } |