be9e91a327
usable by installing <limits> and <memory> which implement parts of the Standard C++ Library missing from the NetBSD toolchain.
15 lines
690 B
Text
15 lines
690 B
Text
$NetBSD: patch-aa,v 1.1 2000/05/12 06:15:07 jlam Exp $
|
|
|
|
--- libs/timer/prg_timer.cpp.orig Thu Jul 22 10:19:48 1999
|
|
+++ libs/timer/prg_timer.cpp Thu May 11 02:37:36 2000
|
|
@@ -24,8 +24,8 @@
|
|
|
|
if( _os == 0 ) { _os = &std::cout; }
|
|
|
|
- std::ios_base::fmtflags old_flags = _os->setf( std::ios_base::fixed,
|
|
- std::ios_base::floatfield );
|
|
+ std::ios::fmtflags old_flags = _os->setf( std::ios::fixed,
|
|
+ std::ios::floatfield );
|
|
std::streamsize old_prec = _os->precision( 2 );
|
|
*_os << elapsed() << " s\n" // "s" is System International d'Unités std
|
|
<< std::endl;
|