Skip to content
Snippets Groups Projects
Commit 241dfe7a authored by Bastien Gorissen's avatar Bastien Gorissen
Browse files

Fixed compilation on case-sensitive systems

parent f9107096
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@
#include "CenterlineField.h"
#include "Field.h"
#include "Options.h"
#include "Simple3D.h"
#include "simple3D.h"
#if defined(HAVE_POST)
#include "PView.h"
......@@ -504,7 +504,7 @@ static void Mesh2D(GModel *m)
#endif
// collapseSmallEdges(*m);
#if defined(HAVE_ANN)
//For centerline field, clean the cut parts
Centerline *center = 0;
......@@ -512,10 +512,10 @@ static void Mesh2D(GModel *m)
if (fields->getBackgroundField() > 0 ){
Field *myField = fields->get(fields->getBackgroundField());
center = dynamic_cast<Centerline*> (myField);
}
}
if (center) center->cleanMesh();
#endif
double t2 = Cpu();
CTX::instance()->meshTimer[1] = t2 - t1;
Msg::StatusBar(2, true, "Done meshing 2D (%g s)", CTX::instance()->meshTimer[1]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment