Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r72938 - trunk/boost/chrono
From: vicente.botet_at_[hidden]
Date: 2011-07-06 18:52:37


Author: viboes
Date: 2011-07-06 18:52:36 EDT (Wed, 06 Jul 2011)
New Revision: 72938
URL: http://svn.boost.org/trac/boost/changeset/72938

Log:
chrono: isuue with win-intel compiler
Text files modified:
   trunk/boost/chrono/duration.hpp | 16 ++++++++--------
   1 files changed, 8 insertions(+), 8 deletions(-)

Modified: trunk/boost/chrono/duration.hpp
==============================================================================
--- trunk/boost/chrono/duration.hpp (original)
+++ trunk/boost/chrono/duration.hpp 2011-07-06 18:52:36 EDT (Wed, 06 Jul 2011)
@@ -89,10 +89,10 @@
 
     template <class Duration, class Rep2,
         bool = (
- (boost::is_convertible<typename Duration::rep,
- typename common_type<typename Duration::rep, Rep2>::type>::value)
- && (boost::is_convertible<Rep2,
- typename common_type<typename Duration::rep, Rep2>::type>::value)
+ ((boost::is_convertible<typename Duration::rep,
+ typename common_type<typename Duration::rep, Rep2>::type>::value))
+ && ((boost::is_convertible<Rep2,
+ typename common_type<typename Duration::rep, Rep2>::type>::value))
                 )
>
     struct duration_divide_imp
@@ -119,10 +119,10 @@
 
     template <class Rep, class Duration,
         bool = (
- (boost::is_convertible<typename Duration::rep,
- typename common_type<typename Duration::rep, Rep>::type>::value)
- && (boost::is_convertible<Rep,
- typename common_type<typename Duration::rep, Rep>::type>::value)
+ ((boost::is_convertible<typename Duration::rep,
+ typename common_type<typename Duration::rep, Rep>::type>::value))
+ && ((boost::is_convertible<Rep,
+ typename common_type<typename Duration::rep, Rep>::type>::value))
                 )
>
     struct duration_divide_imp2


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