File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -177,8 +177,8 @@ void EnableStatistics(bool DoPrintOnExit = true);
177
177
// / Check if statistics are enabled.
178
178
bool AreStatisticsEnabled ();
179
179
180
- // / Return a file stream to print our output on.
181
- std::unique_ptr<raw_fd_ostream > CreateInfoOutputFile ();
180
+ // / Return a stream to print our output on.
181
+ std::unique_ptr<raw_ostream > CreateInfoOutputFile ();
182
182
183
183
// / Print statistics to the file returned by CreateInfoOutputFile().
184
184
void PrintStatistics ();
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ void llvm::initTimerOptions() {
93
93
*SortTimers;
94
94
}
95
95
96
- std::unique_ptr<raw_fd_ostream > llvm::CreateInfoOutputFile () {
96
+ std::unique_ptr<raw_ostream > llvm::CreateInfoOutputFile () {
97
97
const std::string &OutputFilename = getLibSupportInfoOutputFilename ();
98
98
if (OutputFilename.empty ())
99
99
return std::make_unique<raw_fd_ostream>(2 , false ); // stderr.
You can’t perform that action at this time.
0 commit comments