From 35b5f2adee49eaadf8d779bca867754fff73ac1e Mon Sep 17 00:00:00 2001 From: adam Date: Fri, 9 Oct 2009 14:34:57 +0000 Subject: [PATCH] windows port --- src/BLSURFPlugin/BLSURFPlugin_BLSURF.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.2