summaryrefslogtreecommitdiff
path: root/src/Toplex_map/include/gudhi/Toplex_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Toplex_map/include/gudhi/Toplex_map.h')
-rw-r--r--src/Toplex_map/include/gudhi/Toplex_map.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Toplex_map/include/gudhi/Toplex_map.h b/src/Toplex_map/include/gudhi/Toplex_map.h
index ccea34d5..b6bb5381 100644
--- a/src/Toplex_map/include/gudhi/Toplex_map.h
+++ b/src/Toplex_map/include/gudhi/Toplex_map.h
@@ -220,7 +220,8 @@ template <typename Input_vertex_range>
void Toplex_map::insert_independent_simplex(const Input_vertex_range &vertex_range){
for(const Toplex_map::Vertex& v : vertex_range){
if(!t0.count(v)) t0.emplace(v, Simplex_ptr_set());
- t0.at(v).emplace(get_key(vertex_range));
+ auto k = get_key(vertex_range);
+ t0.at(v).emplace(k);
}
}