Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r85055 - branches/release/boost/polygon/detail
From: sydorchuk.andriy_at_[hidden]
Date: 2013-07-16 16:15:38


Author: asydorchuk
Date: 2013-07-16 16:15:38 EDT (Tue, 16 Jul 2013)
New Revision: 85055
URL: http://svn.boost.org/trac/boost/changeset/85055

Log:
Polygon: merging fix of bug #8197 with release branch.

Text files modified:
   branches/release/boost/polygon/detail/polygon_45_touch.hpp | 4 +++-
   1 files changed, 3 insertions(+), 1 deletions(-)

Modified: branches/release/boost/polygon/detail/polygon_45_touch.hpp
==============================================================================
--- branches/release/boost/polygon/detail/polygon_45_touch.hpp Tue Jul 16 13:15:46 2013 (r85054)
+++ branches/release/boost/polygon/detail/polygon_45_touch.hpp 2013-07-16 16:15:38 EDT (Tue, 16 Jul 2013) (r85055)
@@ -64,7 +64,9 @@
       //inline CountTouch& operator=(int count) { counts[0] = counts[1] = count; return *this; }
       inline CountTouch& operator=(const CountTouch& count) { counts = count.counts; return *this; }
       inline int& operator[](int index) {
- std::vector<std::pair<int, int> >::iterator itr = lower_bound(counts.begin(), counts.end(), std::make_pair(index, int(0)));
+ std::vector<std::pair<int, int> >::iterator itr =
+ std::lower_bound(counts.begin(), counts.end(),
+ std::make_pair(index, int(0)));
         if(itr != counts.end() && itr->first == index) {
             return itr->second;
         }


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