Ticket #87: time_measure.patch
File time_measure.patch, 526 bytes (added by , 17 years ago) |
---|
-
lemon/time_measure.h
MSVC compilation error fixed in time_measure.h diff --git a/lemon/time_measure.h b/lemon/time_measure.h
a b 24 24 ///\brief Tools for measuring cpu usage 25 25 26 26 #ifdef WIN32 27 #define WIN32_LEAN_AND_MEAN 27 28 #include <windows.h> 28 29 #include <cmath> 29 30 #else … … 504 505 ///\e Prints the ellapsed time on destruction. 505 506 ~TimeReport() 506 507 { 507 _os << _title << *this << std::endl;508 _os << _title.c_str() << *this << std::endl; 508 509 } 509 510 }; 510 511