[Path] Switch from boost::tuple to std::tuple

It's better to use the standard lib when possible
This commit is contained in:
Benjamin Nauck
2021-03-06 02:19:31 +01:00
committed by wwmayer
parent 64e2811192
commit afb1d0fbc9
3 changed files with 5 additions and 5 deletions

View File

@@ -829,9 +829,9 @@ void TaskCheckGeometryResults::dispatchError(ResultEntry *entry, const BRepCheck
std::vector<FunctionMapType>::iterator mapIt;
for (mapIt = functionMap.begin(); mapIt != functionMap.end(); ++mapIt)
{
if ((*mapIt).get<0>() == entry->shape.ShapeType() && (*mapIt).get<1>() == stat)
if (std::get<0>(*mapIt) == entry->shape.ShapeType() && std::get<1>(*mapIt) == stat)
{
((*mapIt).get<2>())(entry);
(std::get<2>(*mapIt))(entry);
return;
}
}