From: Wolfgang Bangerth Date: Tue, 26 May 1998 09:01:28 +0000 (+0000) Subject: Small fix to avoid warning in output operator. X-Git-Tag: v8.0.0~22889 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba95d0374f4658ebde73458f9c4b17257f3c1866;p=dealii.git Small fix to avoid warning in output operator. git-svn-id: https://svn.dealii.org/trunk@365 0785d39b-7218-0410-832d-ea1e28bc413d --- 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 */