From: adam Date: Fri, 9 Oct 2009 14:34:57 +0000 (+0000) Subject: windows port X-Git-Tag: V5_1_3rc1~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=35b5f2adee49eaadf8d779bca867754fff73ac1e;p=plugins%2Fblsurfplugin.git windows port --- diff --git a/src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx b/src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx index a972233..401cb48 100644 --- a/src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx +++ b/src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx @@ -454,7 +454,7 @@ void createEnforcedVertexOnFace(TopoDS_Shape GeomShape, BLSURFPlugin_Hypothesis: if (FaceId2EnforcedVertexCoords.find(key) != FaceId2EnforcedVertexCoords.end()) { MESSAGE("Map of enf. vertex has key " << key) MESSAGE("Enf. vertex list size is: " << FaceId2EnforcedVertexCoords[key].size()) - if (not sameAttractor) + if (! sameAttractor) FaceId2EnforcedVertexCoords[key].insert(coords); // there should be no redondant coords here (see std::set management) else MESSAGE("An attractor node is already defined: I don't add the enforced vertex"); @@ -462,7 +462,7 @@ void createEnforcedVertexOnFace(TopoDS_Shape GeomShape, BLSURFPlugin_Hypothesis: } else { MESSAGE("Map of enf. vertex has not key " << key << ": creating it") - if (not sameAttractor) { + if (! sameAttractor) { std::set< std::vector > ens; ens.insert(coords); FaceId2EnforcedVertexCoords[key] = ens;