diff options
author | Raphael Isemann <risemann@apple.com> | 2019-11-30 15:30:08 +0100 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-12-02 13:27:21 +0100 |
commit | 4f728bfc13c45bc744bfdbfc3086bed74a8cbb4c (patch) | |
tree | 8770c087af4aba341ba85880dd369416b5942a10 /lldb/source/Utility | |
parent | 76b70f6f75e90074bf2f5168383cc3afc21b61ad (diff) | |
download | bcm5719-llvm-4f728bfc13c45bc744bfdbfc3086bed74a8cbb4c.tar.gz bcm5719-llvm-4f728bfc13c45bc744bfdbfc3086bed74a8cbb4c.zip |
[lldb][NFC] Use raw_ostream instead of Stream in Baton::GetDescription
Removing raw_ostream here is getting us closer to removing LLDB's Stream
class.
Diffstat (limited to 'lldb/source/Utility')
-rw-r--r-- | lldb/source/Utility/Baton.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/source/Utility/Baton.cpp b/lldb/source/Utility/Baton.cpp index 84e295e2468..7bba10dcec9 100644 --- a/lldb/source/Utility/Baton.cpp +++ b/lldb/source/Utility/Baton.cpp @@ -8,5 +8,6 @@ #include "lldb/Utility/Baton.h" -void lldb_private::UntypedBaton::GetDescription( - Stream *s, lldb::DescriptionLevel level) const {} +void lldb_private::UntypedBaton::GetDescription(llvm::raw_ostream &s, + lldb::DescriptionLevel level, + unsigned indentation) const {} |