$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r85832 - trunk/boost/sync/support
From: andrey.semashev_at_[hidden]
Date: 2013-09-22 12:54:58
Author: andysem
Date: 2013-09-22 12:54:58 EDT (Sun, 22 Sep 2013)
New Revision: 85832
URL: http://svn.boost.org/trac/boost/changeset/85832
Log:
Minor cleanup.
Text files modified: 
   trunk/boost/sync/support/boost_chrono.hpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/sync/support/boost_chrono.hpp
==============================================================================
--- trunk/boost/sync/support/boost_chrono.hpp	Sun Sep 22 12:54:09 2013	(r85831)
+++ trunk/boost/sync/support/boost_chrono.hpp	2013-09-22 12:54:58 EDT (Sun, 22 Sep 2013)	(r85832)
@@ -55,9 +55,9 @@
 
     static BOOST_CONSTEXPR_OR_CONST bool is_specialized = true;
 
-    static chrono_time_point< boost::chrono::time_point< Clock, Duration > > to_sync_unit(boost::chrono::time_point< Clock, Duration > const& point) BOOST_NOEXCEPT
+    static unit_type to_sync_unit(boost::chrono::time_point< Clock, Duration > const& point) BOOST_NOEXCEPT
     {
-        return chrono_time_point< boost::chrono::time_point< Clock, Duration > >(point);
+        return unit_type(point);
     }
 };