summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-10-05 13:18:59 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-10-05 13:18:59 +0200
commit9bba01c0afb2c931553d2c47af0104f407d22c01 (patch)
tree52577b53b473bb9288af80dde951b7d03f4f6993
parent3b839cae75a7e58b87216ee92356267bbe873e46 (diff)
code review: typename is useless here
-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 a692dbc6..ae04e6e8 100644
--- a/src/Alpha_complex/include/gudhi/Alpha_complex.h
+++ b/src/Alpha_complex/include/gudhi/Alpha_complex.h
@@ -134,7 +134,7 @@ class Alpha_complex {
using size_type = typename Triangulation::size_type;
// Structure to switch from simplex tree vertex handle to CGAL vertex iterator.
- using Vector_vertex_iterator = typename std::vector< CGAL_vertex_iterator >;
+ using Vector_vertex_iterator = std::vector< CGAL_vertex_iterator >;
private:
/** \brief Vertex iterator vector to switch from simplex tree vertex handle to CGAL vertex iterator.