Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/GUDHI/gudhi-devel into Ex…
Browse files Browse the repository at this point in the history
…act_SW
  • Loading branch information
MathieuCarriere committed Aug 2, 2024
2 parents 0d2bda1 + 8f5adb6 commit 844c279
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace persistence_matrix {
*
* @brief List of column types.
*/
enum Column_types {
enum class Column_types {
LIST, /**< @ref List_column "": Underlying container is a std::list<@ref Cell*>. */
SET, /**< @ref Set_column "": Underlying container is a std::set<@ref Cell*>. */
HEAP, /**< @ref Heap_column "": Underlying container is a std::vector<@ref Cell*> ordered as a heap.
Expand All @@ -46,7 +46,7 @@ enum Column_types {
* @brief List if indexation schemes. See @ref mp_indexation "description of indexation schemes" for more details
* about the meaning of the indexation types.
*/
enum Column_indexation_types {
enum class Column_indexation_types {
CONTAINER, /**< Default use of @ref MatIdx indices. */
POSITION, /**< All input and output @ref MatIdx indices are replaced with @ref PosIdx indices. */
IDENTIFIER /**< All input and output @ref MatIdx indices are replaced with @ref IDIdx indices. */
Expand Down

0 comments on commit 844c279

Please sign in to comment.