diff options
author | Jason Molenda <jmolenda@apple.com> | 2016-07-21 22:50:01 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2016-07-21 22:50:01 +0000 |
commit | e62dda20a4e716f444cf5272318cbfaa9888df91 (patch) | |
tree | fb0059db3dd2c24baa9a201eeacbf7a4840cf237 /lldb/source/Core/StructuredData.cpp | |
parent | 1ac8adfcab5e109c408bb01a8f0ed6908c67c1d7 (diff) | |
download | bcm5719-llvm-e62dda20a4e716f444cf5272318cbfaa9888df91.tar.gz bcm5719-llvm-e62dda20a4e716f444cf5272318cbfaa9888df91.zip |
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
Diffstat (limited to 'lldb/source/Core/StructuredData.cpp')
-rw-r--r-- | lldb/source/Core/StructuredData.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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) |