From 235b91e2ea518362be90ce6a3d6f677f204f346e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 6 Jun 2003 22:13:01 +0000 Subject: Fix compilation problem with some versions of G++ llvm-svn: 6660 --- llvm/support/lib/Support/Timer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/support/lib/Support/Timer.cpp') diff --git a/llvm/support/lib/Support/Timer.cpp b/llvm/support/lib/Support/Timer.cpp index 85114b57f2b..625653afe1a 100644 --- a/llvm/support/lib/Support/Timer.cpp +++ b/llvm/support/lib/Support/Timer.cpp @@ -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"; -- cgit v1.2.3