There a a few call sites that use FILE* which are easy to
fix without disrupting anything else.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
- Build Status
Buildable 39208 Build 39220: arc lint + arc unit
Event Timeline
lldb/source/Core/IOHandler.cpp | ||
---|---|---|
332 | It looks like this could actually use the Stream interface to write this stuff (*m_output_sp << prompt). Ideally, I guess we wouldn't even have formatted output capabilities on the File class, and things would always go through streams for stuff like this.. | |
493 | same here. | |
lldb/source/Expression/REPL.cpp | ||
426 | and here. |
It looks like this could actually use the Stream interface to write this stuff (*m_output_sp << prompt). Ideally, I guess we wouldn't even have formatted output capabilities on the File class, and things would always go through streams for stuff like this..