Skip to content
Snippets Groups Projects
Commit 9791dc8c authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix compile

parent 924854ac
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
#include "GModel.h" #include "GModel.h"
#include "GFace.h" #include "GFace.h"
#include "GEdge.h" #include "GEdge.h"
#include "GEdgeCompound.h"
#include "MTriangle.h" #include "MTriangle.h"
#include "MQuadrangle.h" #include "MQuadrangle.h"
#include "MElementCut.h" #include "MElementCut.h"
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
#include "GmshMessage.h" #include "GmshMessage.h"
#include "GmshDefines.h" #include "GmshDefines.h"
#include "GModel.h" #include "GModel.h"
#include "GEdgeCompound.h"
#include "MLine.h" #include "MLine.h"
#include "MTriangle.h" #include "MTriangle.h"
#include "MQuadrangle.h" #include "MQuadrangle.h"
...@@ -254,7 +255,8 @@ class initMeshGEdge { ...@@ -254,7 +255,8 @@ class initMeshGEdge {
if(!e->getVisibility()) { if(!e->getVisibility()) {
if(e->getCompound()) { if(e->getCompound()) {
if(!e->getCompound()->getVisibility()) return; if(!e->getCompound()->getVisibility()) return;
} else }
else
return; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment