From: David Wells Date: Sun, 15 Oct 2017 02:07:28 +0000 (-0400) Subject: Fix two comments (they return references, not pointers). X-Git-Tag: v9.0.0-rc1~946^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f374c40c24aa30860259a3645d757289733ce379;p=dealii.git Fix two comments (they return references, not pointers). --- diff --git a/include/deal.II/grid/intergrid_map.h b/include/deal.II/grid/intergrid_map.h index c3a585f518..9d399fbc9e 100644 --- a/include/deal.II/grid/intergrid_map.h +++ b/include/deal.II/grid/intergrid_map.h @@ -143,12 +143,12 @@ public: void clear (); /** - * Return a pointer to the source grid. + * Return a reference to the source grid. */ const MeshType &get_source_grid () const; /** - * Return a pointer to the destination grid. + * Return a reference to the destination grid. */ const MeshType &get_destination_grid () const;