Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r75580 - trunk/boost/chrono/io
From: vicente.botet_at_[hidden]
Date: 2011-11-20 17:19:55


Author: viboes
Date: 2011-11-20 17:19:55 EST (Sun, 20 Nov 2011)
New Revision: 75580
URL: http://svn.boost.org/trac/boost/changeset/75580

Log:
Chrono: Added more traces to debug pathscale issue
Text files modified:
   trunk/boost/chrono/io/time_point_io.hpp | 6 ++++++
   1 files changed, 6 insertions(+), 0 deletions(-)

Modified: trunk/boost/chrono/io/time_point_io.hpp
==============================================================================
--- trunk/boost/chrono/io/time_point_io.hpp (original)
+++ trunk/boost/chrono/io/time_point_io.hpp 2011-11-20 17:19:55 EST (Sun, 20 Nov 2011)
@@ -432,11 +432,17 @@
               {
                 std::cerr << __FILE__ << "[" << __LINE__ << "]"<< std::endl;
                 duration<double> d = tp - system_clock::from_time_t(t) + seconds(tm.tm_sec);
+ std::cerr << __FILE__ << "[" << __LINE__ << "]"<< std::endl;
                 if (d.count() < 10) os << CharT('0');
+ std::cerr << __FILE__ << "[" << __LINE__ << "]"<< std::endl;
                 std::ios::fmtflags flgs = os.flags();
+ std::cerr << __FILE__ << "[" << __LINE__ << "]"<< std::endl;
                 os.setf(std::ios::fixed, std::ios::floatfield);
+ std::cerr << __FILE__ << "[" << __LINE__ << "]"<< std::endl;
                 os << d.count();
+ std::cerr << __FILE__ << "[" << __LINE__ << "]"<< std::endl;
                 os.flags(flgs);
+ std::cerr << __FILE__ << "[" << __LINE__ << "]"<< std::endl;
                 if (tz == timezone::local)
                 {
                   std::cerr << __FILE__ << "[" << __LINE__ << "]"<< std::endl;


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk