From e62dda20a4e716f444cf5272318cbfaa9888df91 Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Thu, 21 Jul 2016 22:50:01 +0000 Subject: Stop printing double { characters on Dictionary StructuredData objects when Dumping, thanks to Devin to catching the edit mistake I made in r276079. llvm-svn: 276351 --- lldb/source/Core/StructuredData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Core/StructuredData.cpp') diff --git a/lldb/source/Core/StructuredData.cpp b/lldb/source/Core/StructuredData.cpp index 000dacb5f57..95bdeb518bc 100644 --- a/lldb/source/Core/StructuredData.cpp +++ b/lldb/source/Core/StructuredData.cpp @@ -291,7 +291,7 @@ StructuredData::Dictionary::Dump (Stream &s, bool pretty_print) const s << "{"; if (pretty_print) { - s << "{\n"; + s << "\n"; s.IndentMore(); } for (const auto &pair : m_dict) -- cgit v1.2.3