[Lldb-commits] [lldb] r276351 - Stop printing double { characters on Dictionary StructuredData objects
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Thu Jul 21 15:50:01 PDT 2016
Author: jmolenda
Date: Thu Jul 21 17:50:01 2016
New Revision: 276351
URL: http://llvm.org/viewvc/llvm-project?rev=276351&view=rev
Log:
Stop printing double { characters on Dictionary StructuredData objects
when Dumping, thanks to Devin to catching the edit mistake I made in
r276079.
Modified:
lldb/trunk/source/Core/StructuredData.cpp
Modified: lldb/trunk/source/Core/StructuredData.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/StructuredData.cpp?rev=276351&r1=276350&r2=276351&view=diff
==============================================================================
--- lldb/trunk/source/Core/StructuredData.cpp (original)
+++ lldb/trunk/source/Core/StructuredData.cpp Thu Jul 21 17:50:01 2016
@@ -291,7 +291,7 @@ StructuredData::Dictionary::Dump (Stream
s << "{";
if (pretty_print)
{
- s << "{\n";
+ s << "\n";
s.IndentMore();
}
for (const auto &pair : m_dict)
More information about the lldb-commits
mailing list