From 241dfe7ac6bb6fc70069a40b8e72793fc3efb0ee Mon Sep 17 00:00:00 2001
From: Bastien Gorissen <bastien.gorissen@cenaero.be>
Date: Fri, 23 Mar 2012 10:21:58 +0000
Subject: [PATCH] Fixed compilation on case-sensitive systems

---
 Mesh/Generator.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Mesh/Generator.cpp b/Mesh/Generator.cpp
index 47570a25ce..50ff49a5a5 100644
--- a/Mesh/Generator.cpp
+++ b/Mesh/Generator.cpp
@@ -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]);
-- 
GitLab