Skip to content

Commit

Permalink
Added doxygen tags
Browse files Browse the repository at this point in the history
  • Loading branch information
jwellbelove committed Dec 9, 2014
1 parent 9b51d5a commit 03367f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions pool.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ namespace etl
//*************************************************************************
/// A templated pool implementation that uses a fixed size pool.
/// SIZE_ elements will be always be constructed.
///\ingroup pool
//*************************************************************************
template <typename T, const size_t SIZE_>
class pool
Expand Down
8 changes: 4 additions & 4 deletions variant.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ namespace etl

//***************************************************************************
/// Base exception for the variant class.
///\ingroup variant
//***************************************************************************
class variant_exception : public exception
{
Expand All @@ -76,9 +77,8 @@ namespace etl
};

//***************************************************************************
/// <summary>
/// 'Unsupported type' exception for the variant class.
/// </summary>
///\ingroup variant
//***************************************************************************
class variant_incorrect_type_exception : public variant_exception
{
Expand All @@ -90,9 +90,8 @@ namespace etl
};

//***************************************************************************
/// <summary>
/// 'type Id' exception for the variant class.
/// </summary>
///\ingroup variant
//***************************************************************************
class variant_invalid_type_id_exception : public variant_exception
{
Expand All @@ -106,6 +105,7 @@ namespace etl
//***************************************************************************
/// A template class that can store any of the types defined in the template parameter list.
/// Supports up to 8 types.
///\ingroup variant
//***************************************************************************
template <typename T1,
typename T2 = __private_variant__::no_type<2>,
Expand Down

0 comments on commit 03367f0

Please sign in to comment.