Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r64868 - branches/release/boost/detail
From: dnljms_at_[hidden]
Date: 2010-08-17 15:19:59


Author: danieljames
Date: 2010-08-17 15:19:59 EDT (Tue, 17 Aug 2010)
New Revision: 64868
URL: http://svn.boost.org/trac/boost/changeset/64868

Log:
Rename 'check' in detail/is_incrementable.

Merged [63763] and mark other merged changes.

Properties modified:
   branches/release/boost/detail/ (props changed)
   branches/release/boost/detail/endian.hpp (props changed)
Text files modified:
   branches/release/boost/detail/is_incrementable.hpp | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

Modified: branches/release/boost/detail/is_incrementable.hpp
==============================================================================
--- branches/release/boost/detail/is_incrementable.hpp (original)
+++ branches/release/boost/detail/is_incrementable.hpp 2010-08-17 15:19:59 EDT (Tue, 17 Aug 2010)
@@ -70,10 +70,10 @@
 # endif
 
   // two check overloads help us identify which operator++ was picked
- char (& check(tag) )[2];
+ char (& check_(tag) )[2];
   
   template <class T>
- char check(T const&);
+ char check_(T const&);
   
 
   template <class T>
@@ -83,7 +83,7 @@
 
       BOOST_STATIC_CONSTANT(
           bool
- , value = sizeof(is_incrementable_::check(BOOST_comma(++x,0))) == 1
+ , value = sizeof(is_incrementable_::check_(BOOST_comma(++x,0))) == 1
       );
   };
 
@@ -94,7 +94,7 @@
 
       BOOST_STATIC_CONSTANT(
           bool
- , value = sizeof(is_incrementable_::check(BOOST_comma(x++,0))) == 1
+ , value = sizeof(is_incrementable_::check_(BOOST_comma(x++,0))) == 1
       );
   };
 


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