[Lldb-commits] [lldb] r191919 - A more thorough fix for the newlines issue

Enrico Granata egranata at apple.com
Thu Oct 3 11:11:25 PDT 2013


Author: enrico
Date: Thu Oct  3 13:11:24 2013
New Revision: 191919

URL: http://llvm.org/viewvc/llvm-project?rev=191919&view=rev
Log:
A more thorough fix for the newlines issue

Modified:
    lldb/trunk/source/DataFormatters/ValueObjectPrinter.cpp

Modified: lldb/trunk/source/DataFormatters/ValueObjectPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/DataFormatters/ValueObjectPrinter.cpp?rev=191919&r1=191918&r2=191919&view=diff
==============================================================================
--- lldb/trunk/source/DataFormatters/ValueObjectPrinter.cpp (original)
+++ lldb/trunk/source/DataFormatters/ValueObjectPrinter.cpp Thu Oct  3 13:11:24 2013
@@ -541,4 +541,6 @@ ValueObjectPrinter::PrintChildrenIfNeede
     {
             m_stream->PutCString("{...}\n");
     }
+    else
+        m_stream->EOL();
 }





More information about the lldb-commits mailing list