$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r64871 - sandbox/chrono/boost/chrono
From: vicente.botet_at_[hidden]
Date: 2010-08-17 16:23:25
Author: viboes
Date: 2010-08-17 16:23:21 EDT (Tue, 17 Aug 2010)
New Revision: 64871
URL: http://svn.boost.org/trac/boost/changeset/64871
Log:
Towards making process_cpu_clock::times an arithmetic type so process_cpu_clock can be a Clcok
Text files modified: 
   sandbox/chrono/boost/chrono/process_cpu_clocks.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/chrono/boost/chrono/process_cpu_clocks.hpp
==============================================================================
--- sandbox/chrono/boost/chrono/process_cpu_clocks.hpp	(original)
+++ sandbox/chrono/boost/chrono/process_cpu_clocks.hpp	2010-08-17 16:23:21 EDT (Tue, 17 Aug 2010)
@@ -125,7 +125,7 @@
             }
             
             template <typename OSTREAM>
-            void print(OSTREAM& os) {
+            void print(OSTREAM& os) const {
                 os <<  "{"<< real <<","<< user <<","<< system << "}";
             };
         };