Update of /cvsroot/boost/boost/tools/inspect
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv8448
Modified Files:
inspect.cpp
Log Message:
use the new boost::time_string() utility
Index: inspect.cpp
===================================================================
RCS file: /cvsroot/boost/boost/tools/inspect/inspect.cpp,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- inspect.cpp 29 Jul 2006 15:15:25 -0000 1.21
+++ inspect.cpp 31 Jul 2006 20:44:44 -0000 1.22
@@ -29,7 +29,7 @@
#include <boost/filesystem/fstream.hpp>
#include <boost/format.hpp>
-
+#include "../common/time_string.hpp"
#include "inspector.hpp"
#include "copyright_check.hpp"
@@ -649,16 +649,8 @@
itr->inspector->close();
}
- const int s = 128;
- char buffer[ s ];
- std::time_t tod;
- std::time( &tod );
-
- const bool time_retrieved = 0 !=
- std::strftime( buffer, s,
- "%X UTC, %A %d %B %Y", std::gmtime( &tod ) );
-
- string run_date( time_retrieved? static_cast<const char*>( buffer ): "n/a");
+ string run_date ( "n/a" );
+ boost::time_string( run_date );
if (display_text == display_format)
{
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
|