$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r63336 - in sandbox/chrono/boost/chrono: . typeof/boost/chrono
From: vicente.botet_at_[hidden]
Date: 2010-06-25 22:48:15
Author: viboes
Date: 2010-06-25 22:48:14 EDT (Fri, 25 Jun 2010)
New Revision: 63336
URL: http://svn.boost.org/trac/boost/changeset/63336
Log:
Cleanup
Text files modified: 
   sandbox/chrono/boost/chrono/stopwatch_reporter.hpp         |     4 ++--                                    
   sandbox/chrono/boost/chrono/typeof/boost/chrono/chrono.hpp |     4 ++--                                    
   2 files changed, 4 insertions(+), 4 deletions(-)
Modified: sandbox/chrono/boost/chrono/stopwatch_reporter.hpp
==============================================================================
--- sandbox/chrono/boost/chrono/stopwatch_reporter.hpp	(original)
+++ sandbox/chrono/boost/chrono/stopwatch_reporter.hpp	2010-06-25 22:48:14 EDT (Fri, 25 Jun 2010)
@@ -146,9 +146,9 @@
     template <class Stopwatch, class Formatter>
     void basic_stopwatch_reporter<Stopwatch, Formatter>::report( system::error_code & ec ) {
         chrono::scoped_suspend<typename Stopwatch::clock> _(ec);
-        m_reported = true;
-        //~ if ( m_format.empty() ) m_format = Formatter::default_format();
+        if ( m_format.empty() ) m_format = Formatter::default_format();
 
+        m_reported = true;
         Formatter::show_time( *this, m_format.c_str(), m_places, m_os, ec);
     }
 
Modified: sandbox/chrono/boost/chrono/typeof/boost/chrono/chrono.hpp
==============================================================================
--- sandbox/chrono/boost/chrono/typeof/boost/chrono/chrono.hpp	(original)
+++ sandbox/chrono/boost/chrono/typeof/boost/chrono/chrono.hpp	2010-06-25 22:48:14 EDT (Fri, 25 Jun 2010)
@@ -11,8 +11,8 @@
 //
 //////////////////////////////////////////////////////////////////////////////
 
-#ifndef BOOST_CHRONO_TYPEOF_RATIO__HPP
-#define BOOST_CHRONO_TYPEOF_RATIO__HPP
+#ifndef BOOST_CHRONO_TYPEOF_CHRONO__HPP
+#define BOOST_CHRONO_TYPEOF_CHRONO__HPP
 
 #include <boost/chrono/chrono.hpp>
 #include <boost/typeof/typeof.hpp>