- Fixed Documentation for Consistency
- Added more documentation, predominantly in the Math Library
This commit is contained in:
@@ -48,7 +48,6 @@ template<typename T, T V> struct integral_constant
|
||||
/// \brief value of the constant
|
||||
inline static constexpr T value = V;
|
||||
|
||||
///
|
||||
///
|
||||
/// \brief cast operator to allow for braced initialization
|
||||
/// \returns the value of the constant
|
||||
@@ -56,7 +55,6 @@ template<typename T, T V> struct integral_constant
|
||||
};
|
||||
|
||||
|
||||
///
|
||||
///
|
||||
/// \brief metaprogramming boolean constant
|
||||
///
|
||||
@@ -67,14 +65,12 @@ struct bool_constant
|
||||
: integral_constant<bool_t, V> {};
|
||||
|
||||
|
||||
///
|
||||
///
|
||||
/// \brief metaprogramming true constant
|
||||
struct true_type
|
||||
: bool_constant<true> {};
|
||||
|
||||
|
||||
///
|
||||
///
|
||||
/// \brief metaprogramming false constant
|
||||
struct false_type
|
||||
|
||||
Reference in New Issue
Block a user