Skip to content

Commit

Permalink
fix CI compile (type)
Browse files Browse the repository at this point in the history
  • Loading branch information
kerautret committed Jun 10, 2024
1 parent 3c36b8a commit 95a2b7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DGtal/geometry/curves/FrechetShortcut.ih
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ void DGtal::FrechetShortcut<TIterator,TInteger>::Backpath::updateOcculters()
typename occulter_list::iterator iter=myOcculters.begin();

iter = myOcculters.begin();
for(int i=0; i < myOcculters.size() && ok ; ++i)
for(typename occulter_list::size_type i=0; i < myOcculters.size() && ok ; ++i)
{
pi = Point(*(iter->first));
v = p-pi;
Expand Down

0 comments on commit 95a2b7d

Please sign in to comment.