Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r67298 - in sandbox/chrono/boost/ratio: . detail
From: vicente.botet_at_[hidden]
Date: 2010-12-18 06:50:58


Author: viboes
Date: 2010-12-18 06:50:56 EST (Sat, 18 Dec 2010)
New Revision: 67298
URL: http://svn.boost.org/trac/boost/changeset/67298

Log:
Ratio: inspection cleanup

Text files modified:
   sandbox/chrono/boost/ratio/detail/overflow_helpers.hpp | 14 +++++++-------
   sandbox/chrono/boost/ratio/ratio.hpp | 6 +++---
   sandbox/chrono/boost/ratio/ratio_fwd.hpp | 2 +-
   3 files changed, 11 insertions(+), 11 deletions(-)

Modified: sandbox/chrono/boost/ratio/detail/overflow_helpers.hpp
==============================================================================
--- sandbox/chrono/boost/ratio/detail/overflow_helpers.hpp (original)
+++ sandbox/chrono/boost/ratio/detail/overflow_helpers.hpp 2010-12-18 06:50:56 EST (Sat, 18 Dec 2010)
@@ -23,7 +23,7 @@
                    Peter Dimov,
                    Jeff Garland,
                    Terry Golubiewski,
- Daniel Krügler,
+ Daniel Krugler,
                    Anthony Williams.
 */
 
@@ -311,8 +311,8 @@
   {};
 
   template <class R1, class R2,
- boost::intmax_t Q1 = R1::num / R1::den, boost::intmax_t M1 = R1::num % R1::den,
- boost::intmax_t Q2 = R2::num / R2::den, boost::intmax_t M2 = R2::num % R2::den>
+ boost::intmax_t Q1 = R1::num / R1::den, boost::intmax_t M1 = R1::num % R1::den,
+ boost::intmax_t Q2 = R2::num / R2::den, boost::intmax_t M2 = R2::num % R2::den>
   struct ratio_less1
   {
     static const bool value = Q1 < Q2;
@@ -344,10 +344,10 @@
   };
   
   template <
- class R1,
- class R2,
- boost::intmax_t S1 = boost::integer::static_signed_sign<R1::num>::value,
- boost::intmax_t S2 = boost::integer::static_signed_sign<R2::num>::value
+ class R1,
+ class R2,
+ boost::intmax_t S1 = boost::integer::static_signed_sign<R1::num>::value,
+ boost::intmax_t S2 = boost::integer::static_signed_sign<R2::num>::value
>
   struct ratio_less
   {

Modified: sandbox/chrono/boost/ratio/ratio.hpp
==============================================================================
--- sandbox/chrono/boost/ratio/ratio.hpp (original)
+++ sandbox/chrono/boost/ratio/ratio.hpp 2010-12-18 06:50:56 EST (Sat, 18 Dec 2010)
@@ -23,7 +23,7 @@
                    Peter Dimov,
                    Jeff Garland,
                    Terry Golubiewski,
- Daniel Krügler,
+ Daniel Krugler,
                    Anthony Williams.
 */
 
@@ -180,8 +180,8 @@
 template <class R1, class R2>
 struct ratio_gcd
 {
- typedef ratio<boost::integer::static_signed_gcd<R1::num, R2::num>::value,
- boost::integer::static_signed_lcm<R1::den, R2::den>::value> type;
+ typedef ratio<boost::integer::static_signed_gcd<R1::num, R2::num>::value,
+ boost::integer::static_signed_lcm<R1::den, R2::den>::value> type;
 };
     
 } // namespace boost

Modified: sandbox/chrono/boost/ratio/ratio_fwd.hpp
==============================================================================
--- sandbox/chrono/boost/ratio/ratio_fwd.hpp (original)
+++ sandbox/chrono/boost/ratio/ratio_fwd.hpp 2010-12-18 06:50:56 EST (Sat, 18 Dec 2010)
@@ -23,7 +23,7 @@
                    Peter Dimov,
                    Jeff Garland,
                    Terry Golubiewski,
- Daniel Krügler,
+ Daniel Krugler,
                    Anthony Williams.
 */
 


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