summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Alpha_complex/include/gudhi/Alpha_complex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Alpha_complex/include/gudhi/Alpha_complex.h b/src/Alpha_complex/include/gudhi/Alpha_complex.h
index ae04e6e8..1963f02b 100644
--- a/src/Alpha_complex/include/gudhi/Alpha_complex.h
+++ b/src/Alpha_complex/include/gudhi/Alpha_complex.h
@@ -124,7 +124,7 @@ class Alpha_complex {
using Sphere = typename A_kernel_d::Sphere;
/** \brief A point, or a weighted point in Euclidean space.*/
- using Point_d = std::conditional_t<Weighted, typename A_kernel_d::Weighted_point_d, typename A_kernel_d::Point_d>;
+ using Point_d = typename Geom_traits::Point_d;
private:
// Vertex_iterator type from CGAL.