diff --git a/AssemblerLib/LocalToGlobalIndexMap.h b/AssemblerLib/LocalToGlobalIndexMap.h
index 4b21e4612038b650ec48a465b7c8ab0018a05e52..ccac55bf7242cc4df6b1e40a05090fef1f7a9985 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