From 6ba09c9c9a5276bdd0bbe329f3be05d642eeb12e Mon Sep 17 00:00:00 2001
From: Boris Martin <boris.martin.be@gmail.com>
Date: Mon, 6 Mar 2023 11:10:57 +0100
Subject: [PATCH] removed overrides

---
 specific/configuration/circular_acquisition.h      | 1 -
 specific/configuration/layeredvolume_acquisition.h | 1 -
 specific/configuration/surface_acquisition.h       | 1 -
 specific/configuration/volume_acquisition.h        | 1 -
 4 files changed, 4 deletions(-)

diff --git a/specific/configuration/circular_acquisition.h b/specific/configuration/circular_acquisition.h
index c5b7868..ed48a12 100644
--- a/specific/configuration/circular_acquisition.h
+++ b/specific/configuration/circular_acquisition.h
@@ -67,7 +67,6 @@ namespace circular_acquisition
         bool areFilled() const {return _areFilled;};
         unsigned int ner() const {return _np;};
 
-        virtual void mesh() const;
 
         virtual std::array<unsigned int,2> data_coordinate_to_index(double xs, double xr) const;
         virtual std::array<double,2> index_to_data_coordinate(unsigned int s, unsigned int r) const;
diff --git a/specific/configuration/layeredvolume_acquisition.h b/specific/configuration/layeredvolume_acquisition.h
index 1c318ed..64ed45d 100644
--- a/specific/configuration/layeredvolume_acquisition.h
+++ b/specific/configuration/layeredvolume_acquisition.h
@@ -104,7 +104,6 @@ namespace layeredvolume_acquisition
         unsigned int nye() const {return _nye;};
         unsigned int nyr() const {return _nyr;};
 
-        virtual void mesh() const;
 
         virtual std::array<unsigned int,2> data_coordinate_to_index(double xs, double xr) const;
         virtual std::array<double,2> index_to_data_coordinate(unsigned int s, unsigned int r) const;
diff --git a/specific/configuration/surface_acquisition.h b/specific/configuration/surface_acquisition.h
index ad33ef8..8b68f51 100644
--- a/specific/configuration/surface_acquisition.h
+++ b/specific/configuration/surface_acquisition.h
@@ -56,7 +56,6 @@ namespace surface_acquisition
     virtual void data_mesh() const;
   public:
     Configuration(std::string name, const ParametrizationInterface* const parametrization, const gmshfem::common::GmshFem& gmshFem);
-    virtual void mesh() const;
     unsigned int ne() const {return _ne;};
     unsigned int nr() const {return _nr;};
 
diff --git a/specific/configuration/volume_acquisition.h b/specific/configuration/volume_acquisition.h
index ec8fdfb..d06d707 100644
--- a/specific/configuration/volume_acquisition.h
+++ b/specific/configuration/volume_acquisition.h
@@ -89,7 +89,6 @@ namespace volume_acquisition
         unsigned int nye() const {return _nye;};
         unsigned int nyr() const {return _nyr;};
 
-        virtual void mesh() const;
 
         virtual std::array<unsigned int,2> data_coordinate_to_index(double xs, double xr) const;
         virtual std::array<double,2> index_to_data_coordinate(unsigned int s, unsigned int r) const;
-- 
GitLab