diff --git a/src/Persistence_matrix/include/gudhi/Matrix.h b/src/Persistence_matrix/include/gudhi/Matrix.h index 69cbe7e32..542557f32 100644 --- a/src/Persistence_matrix/include/gudhi/Matrix.h +++ b/src/Persistence_matrix/include/gudhi/Matrix.h @@ -601,7 +601,7 @@ class Matrix { * @ref set_characteristic before calling for the first time a method needing it. Ignored if * @ref PersistenceMatrixOptions::is_z2 is true. */ - Matrix(unsigned int numberOfColumns, Characteristic characteristic = get_null_value()); + Matrix(unsigned int numberOfColumns, Characteristic characteristic = Matrix::get_null_value()); /** * @brief Constructs a new empty matrix with the given comparator functions. Only available when those comparators * are necessary. @@ -680,7 +680,7 @@ class Matrix { Matrix(unsigned int numberOfColumns, const std::function& birthComparator, const std::function& deathComparator, - Characteristic characteristic = get_null_value()); + Characteristic characteristic = Matrix::get_null_value()); /** * @brief Copy constructor. *