Skip to content
Snippets Groups Projects
Commit 22c410ca authored by Carsten Gräser's avatar Carsten Gräser
Browse files

[doc] Fix doxygen group

parent 69133af5
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ namespace Dune {
/**
* \brief Check if given type is a TypeList
*
* \ingroup Utility
* \ingroup TypeUtilities
*
* The result of the check is encoded in the
* base class of type std::integral_constant<bool, result>.
......@@ -43,6 +43,11 @@ namespace Dune {
template<class T>
struct IsTypeList : std::false_type {};
/**
* \copydoc IsTypeList
*
* \ingroup TypeUtilities
*/
template<class... T>
struct IsTypeList<TypeList<T...> > : std::true_type {};
......@@ -51,7 +56,7 @@ namespace Dune {
/**
* \brief Check if given type is an empty TypeList
*
* \ingroup Utility
* \ingroup TypeUtilities
*
* The result of the check is encoded in the
* base class of type std::integral_constant<bool, result>.
......@@ -67,7 +72,7 @@ namespace Dune {
/**
* \brief Get size of TypeList
*
* \ingroup Utility
* \ingroup TypeUtilities
*
* The result of is encoded in the base class of
* type std::integral_constant<std::size_t, result>.
......@@ -83,7 +88,7 @@ namespace Dune {
/**
* \brief Get element of TypeList
*
* \ingroup Utility
* \ingroup TypeUtilities
*/
template<std::size_t i, class... T>
struct TypeListElement<i, TypeList<T...>>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment