diff --git a/Common/include/geometry/CGeometry.hpp b/Common/include/geometry/CGeometry.hpp index be6d247ad5b2..5cb2fd2df6f3 100644 --- a/Common/include/geometry/CGeometry.hpp +++ b/Common/include/geometry/CGeometry.hpp @@ -1072,13 +1072,6 @@ class CGeometry { */ inline virtual long GetGlobal_to_Local_Point(unsigned long val_ipoint) const { return 0; } - /*! - * \brief A virtual member. - * \param[in] val_ipoint - Global marker. - * \return Local marker that correspond with the global index. - */ - inline virtual unsigned short GetGlobal_to_Local_Marker(unsigned short val_imarker) const { return 0; } - /*! * \brief Retrieve total number of elements in a simulation across all processors. * \return Total number of elements in a simulation across all processors. diff --git a/Common/include/geometry/CPhysicalGeometry.hpp b/Common/include/geometry/CPhysicalGeometry.hpp index c833c843a6de..a5853f2812c4 100644 --- a/Common/include/geometry/CPhysicalGeometry.hpp +++ b/Common/include/geometry/CPhysicalGeometry.hpp @@ -42,8 +42,6 @@ class CPhysicalGeometry final : public CGeometry { unordered_map Global_to_Local_Point; /*!< \brief Global-local indexation for the points. */ long *Local_to_Global_Point{nullptr}; /*!< \brief Local-global indexation for the points. */ - unsigned short *Local_to_Global_Marker{nullptr}; /*!< \brief Local to Global marker. */ - unsigned short *Global_to_Local_Marker{nullptr}; /*!< \brief Global to Local marker. */ unsigned long *adj_counter{nullptr}; /*!< \brief Adjacency counter. */ unsigned long **adjacent_elem{nullptr}; /*!< \brief Adjacency element list. */ su2activematrix Sensitivity; /*!< \brief Matrix holding the sensitivities at each point. */ @@ -303,15 +301,6 @@ class CPhysicalGeometry final : public CGeometry { return -1; } - /*! - * \brief Get the local marker that correspond with the global marker. - * \param[in] val_ipoint - Global marker. - * \return Local marker that correspond with the global index. - */ - inline unsigned short GetGlobal_to_Local_Marker(unsigned short val_imarker) const override { - return Global_to_Local_Marker[val_imarker]; - } - /*! * \brief Reads the geometry of the grid and adjust the boundary * conditions with the configuration file in parallel (for parmetis). diff --git a/Common/src/geometry/CPhysicalGeometry.cpp b/Common/src/geometry/CPhysicalGeometry.cpp index e6e7e729115b..5b38fecac45a 100644 --- a/Common/src/geometry/CPhysicalGeometry.cpp +++ b/Common/src/geometry/CPhysicalGeometry.cpp @@ -317,8 +317,6 @@ CPhysicalGeometry::CPhysicalGeometry(CGeometry *geometry, CPhysicalGeometry::~CPhysicalGeometry(void) { delete [] Local_to_Global_Point; - delete [] Global_to_Local_Marker; - delete [] Local_to_Global_Marker; /*--- Free up memory from turbomachinery performance computation ---*/