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:
parent
a48d05e2bf
commit
b714b8f4ad
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue
Block a user