Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
sloriot committed Jul 18, 2019
1 parent 974dfe0 commit 030776f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ class Polylines_do_intersect
bB.reserve(pB.size() - 1 );

Iterator begin = pA.begin();
for(int j=0; j < pA.size()-1; j++){
for(std::size_t j=0; j < pA.size()-1; j++){
Bbox_2 bb = pA[j].bbox() + pA[j+1].bbox();
bA.push_back(Box(bb, begin+j));
}
begin = pB.begin();
for(int j=0; j < pB.size()-1; j++){
for(std::size_t j=0; j < pB.size()-1; j++){
Bbox_2 bb = pB[j].bbox() + pB[j+1].bbox();
bB.push_back(Box(bb, begin+j));
}
Expand Down

0 comments on commit 030776f

Please sign in to comment.