From 4100f1edfdd6332dfc8f13fe32805f83275d6857 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 29 Jan 2019 09:25:31 -0700 Subject: [PATCH] Change the way the constructor template argument works. --- include/deal.II/base/point.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/deal.II/base/point.h b/include/deal.II/base/point.h index 38a87c6f24..d486ae36c8 100644 --- a/include/deal.II/base/point.h +++ b/include/deal.II/base/point.h @@ -148,9 +148,9 @@ public: /** * Convert a boost::geometry::point to a dealii::Point. */ - template + template Point(const boost::geometry::model:: - point &boost_pt, + point &boost_pt, typename std::enable_if<(dim == dummy_dim) && (dummy_dim != 0), int>::type = 0); @@ -374,7 +374,7 @@ template template inline Point::Point( const boost::geometry::model:: - point &boost_pt, + point &boost_pt, typename std::enable_if<(dim == dummy_dim) && (dummy_dim != 0), int>::type) { Assert(dim <= 3, ExcNotImplemented()); -- 2.39.5