From f374c40c24aa30860259a3645d757289733ce379 Mon Sep 17 00:00:00 2001 From: David Wells Date: Sat, 14 Oct 2017 22:07:28 -0400 Subject: [PATCH] Fix two comments (they return references, not pointers). --- include/deal.II/grid/intergrid_map.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.5