summaryrefslogtreecommitdiff
path: root/src/Coxeter_triangulation
diff options
context:
space:
mode:
authorSiargey Kachanovich <siargey.kachanovich@inria.fr>2019-10-18 10:12:57 +0200
committerSiargey Kachanovich <siargey.kachanovich@inria.fr>2019-10-18 10:12:57 +0200
commit24f4c81be019d1895027427d6e6c3434dfc80ad7 (patch)
tree63674bfd8426b37621ef4c1ec37a5c489f0c3855 /src/Coxeter_triangulation
parent1dc1efe51e99e526113e6b9ed9d171be1d633813 (diff)
Added empty constructor for Configuration
Diffstat (limited to 'src/Coxeter_triangulation')
-rw-r--r--src/Coxeter_triangulation/include/gudhi/IO/build_mesh_from_cell_complex.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Coxeter_triangulation/include/gudhi/IO/build_mesh_from_cell_complex.h b/src/Coxeter_triangulation/include/gudhi/IO/build_mesh_from_cell_complex.h
index 5044660e..71070c05 100644
--- a/src/Coxeter_triangulation/include/gudhi/IO/build_mesh_from_cell_complex.h
+++ b/src/Coxeter_triangulation/include/gudhi/IO/build_mesh_from_cell_complex.h
@@ -31,6 +31,8 @@ struct Configuration {
std::size_t r_edges, std::size_t r_triangles, std::size_t r_tetrahedra)
: toggle_edges(t_edges), toggle_triangles(t_triangles), toggle_tetrahedra(t_tetrahedra),
ref_edges(r_edges), ref_triangles(r_triangles), ref_tetrahedra(r_tetrahedra) {}
+
+ Configuration() {}
};