From: wolf Date: Tue, 26 May 1998 09:01:28 +0000 (+0000) Subject: Small fix to avoid warning in output operator. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0cf9041b2fe12b48ef55d845744d30eb07524304;p=dealii-svn.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 */