From 5624cfc39b51dd7f201b11c45b5ca5f218591c04 Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Tue, 25 Sep 2018 15:26:41 +0000 Subject: Constants shall be upper case git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/alpha_complex_3d_module_vincent@3906 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: fcafbe39665a69c6645f8b9d73fc67b98709540e --- src/Alpha_complex/include/gudhi/Alpha_complex_options.h | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'src/Alpha_complex/include/gudhi/Alpha_complex_options.h') diff --git a/src/Alpha_complex/include/gudhi/Alpha_complex_options.h b/src/Alpha_complex/include/gudhi/Alpha_complex_options.h index cd9fe799..29eb514a 100644 --- a/src/Alpha_complex/include/gudhi/Alpha_complex_options.h +++ b/src/Alpha_complex/include/gudhi/Alpha_complex_options.h @@ -29,19 +29,15 @@ namespace Gudhi { namespace alpha_complex { /** - * \class complexity * \brief Alpha complex complexity template parameter possible values. * * \ingroup alpha_complex */ enum class complexity: char { - /** \brief Fast version.*/ - fast='f', - /** \brief Safe version.*/ - safe='s', - /** \brief Exact version.*/ - exact='e', + FAST='f', ///< Fast version. + SAFE='s', ///< Safe version. + EXACT='e', ///< Exact version. }; } // namespace alpha_complex -- cgit v1.2.3