2
0
mirror of https://github.com/boostorg/icl.git synced 2026-01-19 04:12:13 +00:00

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

[SVN r71074]
This commit is contained in:
Joachim Faulhaber
2011-04-07 09:20:56 +00:00
parent 58c523eebe
commit 71bc388e5c
2 changed files with 2 additions and 2 deletions

View File

@@ -146,7 +146,7 @@ private:
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_;

View File

@@ -46,4 +46,4 @@ struct clock_string<Now, CharT>
}} //namespace boost chrono
#endif BOOST_LIBS_ICL_TEST_CHRONO_UTILITY_HPP_JOFA_20110314
#endif //BOOST_LIBS_ICL_TEST_CHRONO_UTILITY_HPP_JOFA_20110314