fix variable shadowing
This commit is contained in:
parent
05ade151a5
commit
5a97c3d541
1 changed files with 2 additions and 2 deletions
|
@ -268,11 +268,11 @@ private:
|
|||
}
|
||||
|
||||
template <typename Iterator>
|
||||
bool fit_sleeve(Iterator itr,Iterator end, vertex2d const& v)
|
||||
bool fit_sleeve(Iterator itr, Iterator itr_end, vertex2d const& v)
|
||||
{
|
||||
sleeve s(*itr,v,tolerance_);
|
||||
++itr; // skip first vertex
|
||||
for (; itr!=end; ++itr)
|
||||
for (; itr!=itr_end; ++itr)
|
||||
{
|
||||
if (!s.inside(*itr))
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue