Skip to content
Snippets Groups Projects
Commit 491ff26d authored by Ansgar Burchardt's avatar Ansgar Burchardt
Browse files

[doc] add docstring to `e` and `pi` [ci skip]

They don't appear in the Doxygen documentation otherwise.
parent d3da6290
Branches
Tags
1 merge request!506[doc] add docstring to `e` and `pi` [ci skip]
......@@ -29,6 +29,9 @@ namespace Dune
template< class T >
struct StandardMathematicalConstants
{
/**
* \brief Euler's number
*/
static const T e ()
{
using std::exp;
......@@ -36,6 +39,9 @@ namespace Dune
return e;
}
/**
* \brief Archimedes' constant
*/
static const T pi ()
{
using std::acos;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment