From ca0da8170fcd40a81c5fd28938ec000f5474bfa1 Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 22 Nov 1999 08:32:09 +0000 Subject: [PATCH] Add Point<4> functions since they are necessary for proper compilation of 3d programs. git-svn-id: https://svn.dealii.org/trunk@1919 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/point.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/deal.II/base/include/base/point.h b/deal.II/base/include/base/point.h index a8429694b5..8872d5aba2 100644 --- a/deal.II/base/include/base/point.h +++ b/deal.II/base/include/base/point.h @@ -222,6 +222,22 @@ Point<3>::Point (const double x, const double y, const double z) { +template <> +inline +Point<4>::Point (const double, const double) { + Assert (false, ExcInvalidConstructorCalled()); +}; + + + +template <> +inline +Point<4>::Point (const double x, const double y, const double z) { + Assert (false, ExcInvalidConstructorCalled()); +}; + + + template inline double Point::operator () (const unsigned int index) const { -- 2.39.5