Skip to content
Snippets Groups Projects
Commit 0402ab3e authored by René Fritze's avatar René Fritze
Browse files

remove useles isnan function

parent 69338947
No related branches found
No related tags found
No related merge requests found
#ifndef DUNE_STUFF_MATH_HH
#define DUNE_STUFF_MATH_HH
template <typename T>
bool isnan(T x)
{
return !(x == x);
}
namespace Stuff {
/** \todo DOCME **/
......
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