$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r78190 - trunk/libs/chrono/example
From: vicente.botet_at_[hidden]
Date: 2012-04-25 07:06:07
Author: viboes
Date: 2012-04-25 07:05:59 EDT (Wed, 25 Apr 2012)
New Revision: 78190
URL: http://svn.boost.org/trac/boost/changeset/78190
Log:
Chrono: fix bad copy/paste
Text files modified: 
   trunk/libs/chrono/example/io_ex1.cpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/libs/chrono/example/io_ex1.cpp
==============================================================================
--- trunk/libs/chrono/example/io_ex1.cpp	(original)
+++ trunk/libs/chrono/example/io_ex1.cpp	2012-04-25 07:05:59 EDT (Wed, 25 Apr 2012)
@@ -62,10 +62,10 @@
     cout << "steady_clock::now() = " << steady_clock::now() << '\n';
 #endif
 #if BOOST_CHRONO_VERSION==2
-    cout << "\nSet cout to use long names:\n" <<     cout << duration_fmt(duration_style::prefix)
+    cout << "\nSet cout to use long names:\n" << duration_fmt(duration_style::prefix)
          << "high_resolution_clock::now() = " << high_resolution_clock::now() << '\n';
 #else
-    cout << "\nSet cout to use long names:\n" <<     cout << duration_long
+    cout << "\nSet cout to use long names:\n" <<  duration_long
          << "high_resolution_clock::now() = " << high_resolution_clock::now() << '\n';
 #endif
 #if defined(BOOST_CHRONO_HAS_THREAD_CLOCK)