From: hartmann Date: Tue, 20 Feb 2001 10:45:25 +0000 (+0000) Subject: Add missing constructors. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=afeb249d104675afc4510a0d490f29f97715a600;p=dealii-svn.git Add missing constructors. git-svn-id: https://svn.dealii.org/trunk@3984 0785d39b-7218-0410-832d-ea1e28bc413d --- 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)