From cfd0fc7b3fa849f9333f22a88479c48aaac20b66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Kl=C3=B6fkorn?= <robertk@dune-project.org> Date: Thu, 8 Sep 2005 14:56:00 +0000 Subject: [PATCH] bug fix for Quad with poly ord = 2 . [[Imported from SVN: r2803]] --- quadrature/fixedorder/gaussquadimp.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/quadrature/fixedorder/gaussquadimp.hh b/quadrature/fixedorder/gaussquadimp.hh index 5aeddf4db..f0fdbbab3 100644 --- a/quadrature/fixedorder/gaussquadimp.hh +++ b/quadrature/fixedorder/gaussquadimp.hh @@ -14,6 +14,7 @@ namespace Dune { }; // specialization for the given order + template <> struct PointsOnLine <2> { enum { points = 2 }; }; template <> struct PointsOnLine <3> { enum { points = 2 }; }; template <> struct PointsOnLine <4> { enum { points = 3 }; }; template <> struct PointsOnLine <5> { enum { points = 3 }; }; -- GitLab