From 3f685a30591f5643a4a5f576cf225bfe494a53dc Mon Sep 17 00:00:00 2001
From: Mohcine Chraibi <m.chraibi@fz-juelich.de>
Date: Mon, 25 Feb 2019 14:48:35 +0100
Subject: [PATCH] :green_heart: compilation fix

---
 methods/Method_I.cpp | 7 ++++---
 methods/Method_I.h   | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/methods/Method_I.cpp b/methods/Method_I.cpp
index e12bff72..434b517d 100644
--- a/methods/Method_I.cpp
+++ b/methods/Method_I.cpp
@@ -71,7 +71,7 @@ Method_I::~Method_I()
 // {
 //      return (number < start || number > end);
 // };
-bool Method_I::Process (const PedData& peddata,const fs::path& scriptsLocation, const double& zPos_measureArea)
+bool Method_I::Process(const PedData& peddata,const fs::path& scriptsLocation, const double& zPos_measureArea)
 {
      bool return_value = true;
      _scriptsLocation = scriptsLocation;
@@ -110,7 +110,7 @@ bool Method_I::Process (const PedData& peddata,const fs::path& scriptsLocation,
           }
      }
 
-     if(!OpenFileMethodD())
+     if(!OpenFileMethodI())
      {
           return_value = false;
      }
@@ -216,8 +216,9 @@ bool Method_I::Process (const PedData& peddata,const fs::path& scriptsLocation,
           }
           return return_value;
      }
+}
 
-     bool Method_I::OpenFileMethodD()
+     bool Method_I::OpenFileMethodI()
      {
 
           std::string voroLocation(VORO_LOCATION);
diff --git a/methods/Method_I.h b/methods/Method_I.h
index 26373caa..cf341976 100644
--- a/methods/Method_I.h
+++ b/methods/Method_I.h
@@ -89,7 +89,7 @@ private:
      double _grid_size_X;      // the size of the grid
      double _grid_size_Y;
      float _fps;
-     bool OpenFileMethodD();
+     bool OpenFileMethodI();
      bool OpenFileIndividualFD();
      fs::path _geometryFileName;
      fs::path _trajectoryPath;
-- 
GitLab