Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r71076 - in branches/release: boost/icl libs/icl libs/icl/doc libs/icl/doc/html libs/icl/doc/html/header/boost/icl libs/icl/test libs/icl/test/chrono libs/icl/test/test_doc_code_
From: afojgo_at_[hidden]
Date: 2011-04-07 05:42:45


Author: jofaber
Date: 2011-04-07 05:42:45 EDT (Thu, 07 Apr 2011)
New Revision: 71076
URL: http://svn.boost.org/trac/boost/changeset/71076

Log:
Adjustment for lib++ associated to clang. Qualified call of this->equal_range in split_interval_set.

Properties modified:
   branches/release/boost/icl/ (props changed)
   branches/release/libs/icl/ (props changed)
   branches/release/libs/icl/doc/ (props changed)
   branches/release/libs/icl/doc/html/ (props changed)
   branches/release/libs/icl/doc/html/header/boost/icl/ (props changed)
   branches/release/libs/icl/test/ (props changed)
   branches/release/libs/icl/test/test_doc_code_/ (props changed)
Text files modified:
   branches/release/boost/icl/split_interval_set.hpp | 2 +-
   branches/release/libs/icl/test/chrono/utility.hpp | 2 +-
   branches/release/libs/icl/test/test_interval_map_shared.hpp | 4 ++--
   3 files changed, 4 insertions(+), 4 deletions(-)

Modified: branches/release/boost/icl/split_interval_set.hpp
==============================================================================
--- branches/release/boost/icl/split_interval_set.hpp (original)
+++ branches/release/boost/icl/split_interval_set.hpp 2011-04-07 05:42:45 EDT (Thu, 07 Apr 2011)
@@ -146,7 +146,7 @@
 
     iterator add_over(const interval_type& addend)
     {
- std::pair<iterator,iterator> overlap = equal_range(addend);
+ std::pair<iterator,iterator> overlap = this->equal_range(addend);
         iterator first_ = overlap.first,
                  end_ = overlap.second,
                  last_ = end_; --last_;

Modified: branches/release/libs/icl/test/chrono/utility.hpp
==============================================================================
--- branches/release/libs/icl/test/chrono/utility.hpp (original)
+++ branches/release/libs/icl/test/chrono/utility.hpp 2011-04-07 05:42:45 EDT (Thu, 07 Apr 2011)
@@ -46,4 +46,4 @@
 
 }} //namespace boost chrono
 
-#endif BOOST_LIBS_ICL_TEST_CHRONO_UTILITY_HPP_JOFA_20110314
+#endif //BOOST_LIBS_ICL_TEST_CHRONO_UTILITY_HPP_JOFA_20110314

Modified: branches/release/libs/icl/test/test_interval_map_shared.hpp
==============================================================================
--- branches/release/libs/icl/test/test_interval_map_shared.hpp (original)
+++ branches/release/libs/icl/test/test_interval_map_shared.hpp 2011-04-07 05:42:45 EDT (Thu, 07 Apr 2011)
@@ -1212,7 +1212,7 @@
     BOOST_CHECK_EQUAL( found1->second, found2->second );
     BOOST_CHECK_EQUAL( found1->second, MK_u(2) );
 
- if( mpl::or_<mpl::not_<is_static_left_open<IntervalT> >, boost::is_signed<T> >::value )
+ if( mpl::or_<mpl::not_<is_static_left_open<IntervalT> >, boost::is_signed<T> >::value )
     {
         found1 = map_a.find(MK_v(0));
         found2 = icl::find(map_a, MK_v(0));
@@ -1225,7 +1225,7 @@
     BOOST_CHECK ( found1 == found2 );
     BOOST_CHECK ( found1 == map_a.end() );
 
- if( mpl::or_<mpl::not_<is_static_left_open<IntervalT> >, boost::is_signed<T> >::value )
+ if( mpl::or_<mpl::not_<is_static_left_open<IntervalT> >, boost::is_signed<T> >::value )
     {
         BOOST_CHECK( !icl::contains(map_a, MK_v(0)) );
     }


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