1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0026832: TFunction_Iterator won't work if ExecutionStatus is Standard_False.

The method TFunction_Iterator::More() is corrected().
This commit is contained in:
vro 2016-02-19 12:21:43 +03:00 committed by bugmaster
parent aee24cb547
commit 965681c56a

View File

@ -164,7 +164,7 @@ Standard_Boolean TFunction_Iterator::More() const
}
return Standard_False;
}
return myPassedFunctions.Extent() < myScope->GetFunctions().Extent();
return !myCurrent.IsEmpty();
}
//=======================================================================