From 5614a2c2316b7a5f79719bcce933f8aa7f80c64d Mon Sep 17 00:00:00 2001
From: Christoph Lehmann <christoph.lehmann@ufz.de>
Date: Wed, 11 Nov 2015 17:59:40 +0100
Subject: [PATCH] [Asm] forward method from MeshCompMap

---
 AssemblerLib/LocalToGlobalIndexMap.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/AssemblerLib/LocalToGlobalIndexMap.h b/AssemblerLib/LocalToGlobalIndexMap.h
index 4b21e461203..ccac55bf724 100644
--- a/AssemblerLib/LocalToGlobalIndexMap.h
+++ b/AssemblerLib/LocalToGlobalIndexMap.h
@@ -88,6 +88,12 @@ public:
         return _mesh_component_map.getGlobalIndex(l, c);
     }
 
+    /// Forwards the respective method from MeshComponentMap.
+    std::vector<GlobalIndexType> getGlobalIndices(const MeshLib::Location &l) const
+    {
+        return _mesh_component_map.getGlobalIndices(l);
+    }
+
 private:
     /// Private constructor used by internally created local-to-global index
     /// maps. The mesh_component_map is passed as argument instead of being
-- 
GitLab