[Lldb-commits] [lldb] r137640 - /lldb/trunk/source/Interpreter/CommandInterpreter.cpp
Enrico Granata
granata.enrico at gmail.com
Mon Aug 15 12:24:02 PDT 2011
Author: enrico
Date: Mon Aug 15 14:24:02 2011
New Revision: 137640
URL: http://llvm.org/viewvc/llvm-project?rev=137640&view=rev
Log:
One-line fix for a possible spurious truncation warning
Modified:
lldb/trunk/source/Interpreter/CommandInterpreter.cpp
Modified: lldb/trunk/source/Interpreter/CommandInterpreter.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/CommandInterpreter.cpp?rev=137640&r1=137639&r2=137640&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandInterpreter.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandInterpreter.cpp Mon Aug 15 14:24:02 2011
@@ -72,7 +72,8 @@
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);
More information about the lldb-commits
mailing list