diff options
author | Enrico Granata <egranata@apple.com> | 2015-09-09 20:59:49 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2015-09-09 20:59:49 +0000 |
commit | ad650a189c445b5911941d317fde2df6c6a9bf15 (patch) | |
tree | 5afaa687a2b711b685009433b49326c8aaeba229 /lldb/source/Core/ValueObject.cpp | |
parent | 22ee1a7466ca57ecbab2af5469e95fcf11e91232 (diff) | |
download | bcm5719-llvm-ad650a189c445b5911941d317fde2df6c6a9bf15.tar.gz bcm5719-llvm-ad650a189c445b5911941d317fde2df6c6a9bf15.zip |
Preparatory work for letting language plugins help the StringPrinter with formatting special characters
llvm-svn: 247189
Diffstat (limited to 'lldb/source/Core/ValueObject.cpp')
-rw-r--r-- | lldb/source/Core/ValueObject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp index 85305a00ae7..3efb28088d6 100644 --- a/lldb/source/Core/ValueObject.cpp +++ b/lldb/source/Core/ValueObject.cpp @@ -1601,7 +1601,7 @@ ValueObject::DumpPrintableRepresentation(Stream& s, options.SetPrefixToken(0); options.SetQuote('"'); options.SetSourceSize(buffer_sp->GetByteSize()); - lldb_private::formatters::ReadBufferAndDumpToStream<lldb_private::formatters::StringElementType::ASCII>(options); + formatters::StringPrinter::ReadBufferAndDumpToStream<lldb_private::formatters::StringElementType::ASCII>(options); return !error.Fail(); } |