salomsmesh: fix more bad conditions

warning was:
src/3rdParty/salomesmesh/src/StdMeshers/StdMeshers_Penta_3D.cpp|832 col 9| warning: logical not is only applied to the left hand side of this comparison [-Wlogical-not-parentheses]
This commit is contained in:
Alexander Golubev 2015-05-17 18:39:48 +03:00 committed by wmayer
parent a48d05e2bf
commit b714b8f4ad

View File

@ -829,7 +829,7 @@ void StdMeshers_Penta_3D::MakeMeshOnFxy1()
while(itf->more()) {
const SMDS_MeshElement* pE0 = itf->next();
aElementType = pE0->GetType();
if (!aElementType==SMDSAbs_Face) {
if (aElementType!=SMDSAbs_Face) {
continue;
}
aNbNodes = pE0->NbNodes();