From e843e113237582af69814dfc09bb8f19e980c12b Mon Sep 17 00:00:00 2001 From: nds Date: Thu, 14 Dec 2017 16:48:12 +0300 Subject: [PATCH] Compilation correction on linux --- src/XGUI/XGUI_FacesPanel.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/XGUI/XGUI_FacesPanel.cpp b/src/XGUI/XGUI_FacesPanel.cpp index c3ab2ec0b..a5deb6d14 100644 --- a/src/XGUI/XGUI_FacesPanel.cpp +++ b/src/XGUI/XGUI_FacesPanel.cpp @@ -240,8 +240,8 @@ void XGUI_FacesPanel::processSelection() anObjectToPrs[anObject] = aResultPrs; } } - for (std::map >::const_iterator anIt = anObjectToShapes.begin(); - anIt != anObjectToShapes.end(); anIt++) { + for (std::map >::const_iterator + anIt = anObjectToShapes.begin(); anIt != anObjectToShapes.end(); anIt++) { ObjectPtr anObject = anIt->first; if (!anObject.get() || anObjectToPrs.find(anObject) == anObjectToPrs.end()) continue; @@ -383,8 +383,8 @@ bool XGUI_FacesPanel::hideEmptyObjects() anObjectToPrs[anObject] = aResultPrs; } } - for (std::map >::const_iterator anIt = anObjectToShapes.begin(); - anIt != anObjectToShapes.end(); anIt++) { + for (std::map >::const_iterator + anIt = anObjectToShapes.begin(); anIt != anObjectToShapes.end(); anIt++) { ObjectPtr anObject = anIt->first; if (!anObject.get() || anObjectToPrs.find(anObject) == anObjectToPrs.end()) continue; -- 2.39.2