lemon/bits/enable_if.h
changeset 318 2cc60866a0c9
parent 220 a5d8c039f218
     1.1 --- a/lemon/bits/enable_if.h	Thu Oct 09 10:09:44 2008 +0200
     1.2 +++ b/lemon/bits/enable_if.h	Thu Oct 09 13:27:35 2008 +0200
     1.3 @@ -35,29 +35,29 @@
     1.4  #ifndef LEMON_BITS_ENABLE_IF_H
     1.5  #define LEMON_BITS_ENABLE_IF_H
     1.6  
     1.7 -///\file
     1.8 -///\brief Miscellaneous basic utilities
     1.9 +//\file
    1.10 +//\brief Miscellaneous basic utilities
    1.11  
    1.12  namespace lemon
    1.13  {
    1.14  
    1.15 -  /// Basic type for defining "tags". A "YES" condition for \c enable_if.
    1.16 +  // Basic type for defining "tags". A "YES" condition for \c enable_if.
    1.17  
    1.18 -  /// Basic type for defining "tags". A "YES" condition for \c enable_if.
    1.19 -  ///
    1.20 -  ///\sa False
    1.21 +  // Basic type for defining "tags". A "YES" condition for \c enable_if.
    1.22 +  //
    1.23 +  //\sa False
    1.24    struct True {
    1.25 -    ///\e
    1.26 +    //\e
    1.27      static const bool value = true;
    1.28    };
    1.29  
    1.30 -  /// Basic type for defining "tags". A "NO" condition for \c enable_if.
    1.31 +  // Basic type for defining "tags". A "NO" condition for \c enable_if.
    1.32  
    1.33 -  /// Basic type for defining "tags". A "NO" condition for \c enable_if.
    1.34 -  ///
    1.35 -  ///\sa True
    1.36 +  // Basic type for defining "tags". A "NO" condition for \c enable_if.
    1.37 +  //
    1.38 +  //\sa True
    1.39    struct False {
    1.40 -    ///\e
    1.41 +    //\e
    1.42      static const bool value = false;
    1.43    };
    1.44