summaryrefslogtreecommitdiff
path: root/source/Commands/CommandObjectMultiword.cpp
diff options
context:
space:
mode:
authorDaniel Malea <daniel.malea@intel.com>2013-02-21 21:18:07 +0000
committerDaniel Malea <daniel.malea@intel.com>2013-02-21 21:18:07 +0000
commit004ccb3fcca8c8004cb6cdb1f383b02e792a0452 (patch)
treea098b5398f4b4238feed3ca5b5660affb1b290c3 /source/Commands/CommandObjectMultiword.cpp
parent33cf3f000bdb4b69376ad5157d236694f44c5a0f (diff)
Fix CommandObjectMultiword to initialize all members, and beef up corresponding test case.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@175798 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'source/Commands/CommandObjectMultiword.cpp')
-rw-r--r--source/Commands/CommandObjectMultiword.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/Commands/CommandObjectMultiword.cpp b/source/Commands/CommandObjectMultiword.cpp
index aa3a8ebe3..c87a9d7cd 100644
--- a/source/Commands/CommandObjectMultiword.cpp
+++ b/source/Commands/CommandObjectMultiword.cpp
@@ -34,7 +34,8 @@ CommandObjectMultiword::CommandObjectMultiword
const char *syntax,
uint32_t flags
) :
- CommandObject (interpreter, name, help, syntax, flags)
+ CommandObject (interpreter, name, help, syntax, flags),
+ m_can_be_removed(false)
{
}