mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Fix compilation problem with some versions of G++
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6660 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b8c8829a4a
commit
903c2d11e2
@ -235,7 +235,7 @@ std::ostream *GetLibSupportInfoOutputFile() {
|
||||
return &std::cout;
|
||||
|
||||
std::ostream *Result = new std::ofstream(LibSupportInfoOutputFilename.c_str(),
|
||||
std::ios_base::app);
|
||||
std::ios::app);
|
||||
if (!Result->good()) {
|
||||
std::cerr << "Error opening info-output-file '"
|
||||
<< LibSupportInfoOutputFilename << " for appending!\n";
|
||||
|
@ -235,7 +235,7 @@ std::ostream *GetLibSupportInfoOutputFile() {
|
||||
return &std::cout;
|
||||
|
||||
std::ostream *Result = new std::ofstream(LibSupportInfoOutputFilename.c_str(),
|
||||
std::ios_base::app);
|
||||
std::ios::app);
|
||||
if (!Result->good()) {
|
||||
std::cerr << "Error opening info-output-file '"
|
||||
<< LibSupportInfoOutputFilename << " for appending!\n";
|
||||
|
Loading…
Reference in New Issue
Block a user