|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r65524 - sandbox/chrono/boost/chrono
From: vicente.botet_at_[hidden]
Date: 2010-09-21 17:44:08
Author: viboes
Date: 2010-09-21 17:44:08 EDT (Tue, 21 Sep 2010)
New Revision: 65524
URL: http://svn.boost.org/trac/boost/changeset/65524
Log:
Fix compile bug
Text files modified:
sandbox/chrono/boost/chrono/chrono_io.hpp | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
Modified: sandbox/chrono/boost/chrono/chrono_io.hpp
==============================================================================
--- sandbox/chrono/boost/chrono/chrono_io.hpp (original)
+++ sandbox/chrono/boost/chrono/chrono_io.hpp 2010-09-21 17:44:08 EDT (Tue, 21 Sep 2010)
@@ -7,7 +7,7 @@
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt).
//
-// This code was adapted by Vicente from Howard Hinnant's experimental work
+// This code was adapted by Vicente from Howard Hinnant's experimental work
// on chrono i/o under lvm/libc++ to Boost
#ifndef BOOST_CHRONO_CHRONO_IO_HPP
@@ -117,7 +117,7 @@
namespace boost
{
-
+
namespace chrono
{
@@ -178,7 +178,7 @@
template <class Period>
string_type name() const {
- if (use_short_) return short_name<Period>()
+ if (use_short_) return short_name<Period>();
else return long_name<Period>();
}
@@ -217,7 +217,7 @@
short_seconds_(short_seconds),
short_minutes_(short_minutes),
short_hours_(short_hours)
-{}
+{}
template <class CharT>
duration_punct<CharT>::duration_punct(int use, const duration_punct& d)
@@ -228,7 +228,7 @@
short_seconds_(d.short_seconds_),
short_minutes_(d.short_minutes_),
short_hours_(d.short_hours_)
-{}
+{}
template <class CharT, class Traits>
std::basic_ostream<CharT, Traits>&
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