Skip to content
Snippets Groups Projects
Commit 5aca0915 authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

ENH: use operator[] instead of at() for vector

parent 50ffcdd3
No related branches found
No related tags found
No related merge requests found
......@@ -1060,7 +1060,7 @@ void BandMathXImageFilter<TImage>
for(unsigned int j=0; j < m_Expression.size(); ++j) { VoutIt[j].GoToBegin(); }
for(unsigned int j=0; j < VNit.size(); ++j) { VNit[j].GoToBegin(); }
while(!Vit.at(0).IsAtEnd()) // For each pixel
while(!Vit[0].IsAtEnd()) // For each pixel
{
int ngbhNameIndex=0; int index;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment