$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r72984 - branches/release/boost/chrono
From: vicente.botet_at_[hidden]
Date: 2011-07-09 10:45:22
Author: viboes
Date: 2011-07-09 10:45:21 EDT (Sat, 09 Jul 2011)
New Revision: 72984
URL: http://svn.boost.org/trac/boost/changeset/72984
Log:
Merge Intel issue with default bool template initialization  #72938 - Authorized by Beman
Text files modified: 
   branches/release/boost/chrono/duration.hpp |    16 ++++++++--------                        
   1 files changed, 8 insertions(+), 8 deletions(-)
Modified: branches/release/boost/chrono/duration.hpp
==============================================================================
--- branches/release/boost/chrono/duration.hpp	(original)
+++ branches/release/boost/chrono/duration.hpp	2011-07-09 10:45:21 EDT (Sat, 09 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