diff options
author | Enrico Granata <granata.enrico@gmail.com> | 2011-08-15 19:24:02 +0000 |
---|---|---|
committer | Enrico Granata <granata.enrico@gmail.com> | 2011-08-15 19:24:02 +0000 |
commit | 109c4c7f718746ad6705f8b3fb68fea093abff41 (patch) | |
tree | 42db5126f50ecba28dba1e614e7bc049b8be8af4 /lldb/source/Interpreter/CommandInterpreter.cpp | |
parent | 11403367c006883e552b50e0789250234b95e004 (diff) | |
download | bcm5719-llvm-109c4c7f718746ad6705f8b3fb68fea093abff41.tar.gz bcm5719-llvm-109c4c7f718746ad6705f8b3fb68fea093abff41.zip |
One-line fix for a possible spurious truncation warning
llvm-svn: 137640
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 0b77607906e..ab50edf9526 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -72,7 +72,8 @@ CommandInterpreter::CommandInterpreter m_script_interpreter_ap (), m_comment_char ('#'), m_repeat_char ('!'), - m_batch_command_mode (false) + m_batch_command_mode (false), + m_truncation_warning(eNoTruncation) { const char *dbg_name = debugger.GetInstanceName().AsCString(); std::string lang_name = ScriptInterpreter::LanguageToString (script_language); |