From ba95d0374f4658ebde73458f9c4b17257f3c1866 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 26 May 1998 09:01:28 +0000 Subject: [PATCH] Small fix to avoid warning in output operator. git-svn-id: https://svn.dealii.org/trunk@365 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/grid/point.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/deal.II/deal.II/include/grid/point.h b/deal.II/deal.II/include/grid/point.h index a5418aa307..d603d8632b 100644 --- a/deal.II/deal.II/include/grid/point.h +++ b/deal.II/deal.II/include/grid/point.h @@ -399,6 +399,16 @@ ostream & operator << (ostream &out, const Point &p) { }; +template <> +inline +ostream & operator << (ostream &out, const Point<1> &p) { + out << p(0); + return out; +}; + + + + /*---------------------------- point.h ---------------------------*/ /* end of #ifndef __point_H */ -- 2.39.5