Skip to content
Snippets Groups Projects
Commit 47b061be authored by Christian Engwer's avatar Christian Engwer
Browse files

numeric_limits are a struct

[[Imported from SVN: r6220]]
parent 508cd11a
No related branches found
No related tags found
No related merge requests found
......@@ -16,11 +16,6 @@
* @author Peter Bastian
*/
namespace std
{
template<class T> struct numeric_limits;
}
namespace Dune
{
/** @addtogroup Common
......@@ -136,7 +131,7 @@ namespace Dune
double todouble() const;
friend class bigunsignedint<k/2>;
friend class std::numeric_limits<bigunsignedint<k> >;
friend struct std::numeric_limits< bigunsignedint<k> >;
private:
unsigned short digit[n];
......@@ -553,7 +548,7 @@ namespace Dune
namespace std
{
template<int k>
class numeric_limits<Dune::bigunsignedint<k> >
struct numeric_limits<Dune::bigunsignedint<k> >
{
public:
static const bool is_specialized = true;
......
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