Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r58207 - sandbox/itl/boost/validate/std/algorithm
From: afojgo_at_[hidden]
Date: 2009-12-06 17:15:49


Author: jofaber
Date: 2009-12-06 17:15:48 EST (Sun, 06 Dec 2009)
New Revision: 58207
URL: http://svn.boost.org/trac/boost/changeset/58207

Log:
Replaced Tabs. Stable {msvc-8.0,9.0,10.0; gcc-3.4.4,4.3.2}

Text files modified:
   sandbox/itl/boost/validate/std/algorithm/find.hpp | 14 +++++++-------
   1 files changed, 7 insertions(+), 7 deletions(-)

Modified: sandbox/itl/boost/validate/std/algorithm/find.hpp
==============================================================================
--- sandbox/itl/boost/validate/std/algorithm/find.hpp (original)
+++ sandbox/itl/boost/validate/std/algorithm/find.hpp 2009-12-06 17:15:48 EST (Sun, 06 Dec 2009)
@@ -71,7 +71,7 @@
     TargetT operator()(const AtomicT& source)const
     {
         typename AtomicT::const_reverse_iterator found
- = std::find(source.rbegin(), source.rend(), _comparand);
+ = std::find(source.rbegin(), source.rend(), _comparand);
         if(found == source.rend())
             return neutron<TargetT>::value();
         else
@@ -112,7 +112,7 @@
     TargetT operator()(const AtomicT& source)const
     {
         typename AtomicT::const_iterator found
- = std::lower_bound(source.begin(), source.end(), _comparand);
+ = std::lower_bound(source.begin(), source.end(), _comparand);
         if(found == source.end())
             return neutron<TargetT>::value();
         else
@@ -122,7 +122,7 @@
     TargetT operator()(const SegmentalT& source)const
     {
         typename SegmentalT::element_const_iterator found
- = std::lower_bound(source.elements_begin(), source.elements_end(), _comparand);
+ = std::lower_bound(source.elements_begin(), source.elements_end(), _comparand);
         if(found == source.elements_end())
             return neutron<TargetT>::value();
         else
@@ -151,7 +151,7 @@
     TargetT operator()(const AtomicT& source)const
     {
         typename AtomicT::const_reverse_iterator found
- = std::lower_bound(source.rbegin(), source.rend(), _comparand);
+ = std::lower_bound(source.rbegin(), source.rend(), _comparand);
         if(found == source.rend())
             return neutron<TargetT>::value();
         else
@@ -192,7 +192,7 @@
     TargetT operator()(const AtomicT& source)const
     {
         typename AtomicT::const_iterator found
- = std::upper_bound(source.begin(), source.end(), _comparand);
+ = std::upper_bound(source.begin(), source.end(), _comparand);
         if(found == source.end())
             return neutron<TargetT>::value();
         else
@@ -202,7 +202,7 @@
     TargetT operator()(const SegmentalT& source)const
     {
         typename SegmentalT::element_const_iterator found
- = std::upper_bound(source.elements_begin(), source.elements_end(), _comparand);
+ = std::upper_bound(source.elements_begin(), source.elements_end(), _comparand);
         if(found == source.elements_end())
             return neutron<TargetT>::value();
         else
@@ -231,7 +231,7 @@
     TargetT operator()(const AtomicT& source)const
     {
         typename AtomicT::const_reverse_iterator found
- = std::upper_bound(source.rbegin(), source.rend(), _comparand);
+ = std::upper_bound(source.rbegin(), source.rend(), _comparand);
         if(found == source.rend())
             return neutron<TargetT>::value();
         else


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