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

provided again the dummy implementation... strange - why is it used anyway?

[[Imported from SVN: r1103]]
parent 754bcdfb
No related branches found
No related tags found
No related merge requests found
......@@ -46,10 +46,10 @@ namespace Dune {
struct QuadraturePoints
{
enum { identifier = 0 };
static int numberOfQuadPoints ();
static int order ();
static Domain getPoint (int i);
static RangeField getWeight (int i);
static int numberOfQuadPoints () {};
static int order () {};
static Domain getPoint (int i) {};
static RangeField getWeight (int i) {};
};
template <class Domain, class RangeField, ElementType ElType, int polOrd>
......@@ -57,8 +57,8 @@ namespace Dune {
{
enum { identifier = 0 };
enum { numberOfQuadPoints = 0 };
static Domain getPoint (int i);
static RangeField getWeight (int i);
static Domain getPoint (int i) {};
static RangeField getWeight (int i) {};
};
//**************************************************************************
......
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