From afeb249d104675afc4510a0d490f29f97715a600 Mon Sep 17 00:00:00 2001 From: hartmann Date: Tue, 20 Feb 2001 10:45:25 +0000 Subject: [PATCH] Add missing constructors. git-svn-id: https://svn.dealii.org/trunk@3984 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/point.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/deal.II/base/include/base/point.h b/deal.II/base/include/base/point.h index f9f8f33cec..9eb2b92ba1 100644 --- a/deal.II/base/include/base/point.h +++ b/deal.II/base/include/base/point.h @@ -239,6 +239,24 @@ Point<2>::Point (const double, const double, const double) +template <> +inline +Point<3>::Point (const double) +{ + Assert (false, ExcInvalidConstructorCalled()); +}; + + + +template <> +inline +Point<3>::Point (const double, const double) +{ + Assert (false, ExcInvalidConstructorCalled()); +}; + + + template <> inline Point<3>::Point (const double x, const double y, const double z) -- 2.39.5