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
Event Timeline
| lldb/source/Core/IOHandler.cpp | ||
|---|---|---|
| 333 | 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.. | |
| 494 | 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..