commit | e62dda20a4e716f444cf5272318cbfaa9888df91 | [log] [tgz] |
---|---|---|
author | Jason Molenda <jmolenda@apple.com> | Thu Jul 21 22:50:01 2016 +0000 |
committer | Jason Molenda <jmolenda@apple.com> | Thu Jul 21 22:50:01 2016 +0000 |
tree | fb0059db3dd2c24baa9a201eeacbf7a4840cf237 | |
parent | 1ac8adfcab5e109c408bb01a8f0ed6908c67c1d7 [diff] [blame] |
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
diff --git a/lldb/source/Core/StructuredData.cpp b/lldb/source/Core/StructuredData.cpp index 000dacb..95bdeb5 100644 --- a/lldb/source/Core/StructuredData.cpp +++ b/lldb/source/Core/StructuredData.cpp
@@ -291,7 +291,7 @@ s << "{"; if (pretty_print) { - s << "{\n"; + s << "\n"; s.IndentMore(); } for (const auto &pair : m_dict)