|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r80714 - branches/release/boost/chrono
From: vicente.botet_at_[hidden]
Date: 2012-09-26 15:37:16
Author: viboes
Date: 2012-09-26 15:37:16 EDT (Wed, 26 Sep 2012)
New Revision: 80714
URL: http://svn.boost.org/trac/boost/changeset/80714
Log:
Chrono: merge from trunk fix for #7381
Text files modified:
branches/release/boost/chrono/duration.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: branches/release/boost/chrono/duration.hpp
==============================================================================
--- branches/release/boost/chrono/duration.hpp (original)
+++ branches/release/boost/chrono/duration.hpp 2012-09-26 15:37:16 EDT (Wed, 26 Sep 2012)
@@ -452,8 +452,8 @@
>::type* = 0
) : rep_(r) { }
//~duration() {} //= default;
- BOOST_CONSTEXPR
- duration(const duration& rhs) : rep_(rhs.rep_) {} // = default;
+ //BOOST_CONSTEXPR
+ //duration(const duration& rhs) : rep_(rhs.rep_) {} // = default;
duration& operator=(const duration& rhs) // = default;
{
if (&rhs != this) rep_= rhs.rep_;
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