From 8437fc553ba40087fca8493742176eb3fc84afd5 Mon Sep 17 00:00:00 2001 From: Federico Ponchio ponchio Date: Fri, 1 Jun 2007 10:04:21 +0000 Subject: [PATCH] ! != ~ --- src/meshlab/meshmodel.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/meshlab/meshmodel.h b/src/meshlab/meshmodel.h index 173abf432..e24172eb9 100644 --- a/src/meshlab/meshmodel.h +++ b/src/meshlab/meshmodel.h @@ -23,6 +23,9 @@ /**************************************************************************** History $Log$ +Revision 1.36 2007/06/01 10:04:21 ponchio +! != ~ + Revision 1.35 2007/06/01 09:19:24 cignoni Added MeshDocument and computation of VertexBorderFlags when asking border flags @@ -263,7 +266,7 @@ public: void clearDataMask(int neededDataMask) { - currentDataMask = currentDataMask & (!neededDataMask); + currentDataMask = currentDataMask & (~neededDataMask); } };