From: Wolfgang Bangerth <bangerth@colostate.edu>
Date: Fri, 3 Nov 2023 23:03:32 +0000 (-0600)
Subject: Make a function not 'virtual'.
X-Git-Tag: relicensing~316^2
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6bdddac53c54f8279afb7ecc94f23b70f090f22e;p=dealii.git

Make a function not 'virtual'.
---

diff --git a/include/deal.II/grid/manifold_lib.h b/include/deal.II/grid/manifold_lib.h
index 886bed9444..ea41a091b4 100644
--- a/include/deal.II/grid/manifold_lib.h
+++ b/include/deal.II/grid/manifold_lib.h
@@ -375,7 +375,7 @@ private:
    * @p new_points to point to the same array, so make sure to pass different
    * objects into the function.
    */
-  virtual void
+  void
   get_new_points(const ArrayView<const Point<spacedim>> &surrounding_points,
                  const ArrayView<const double>          &weights,
                  ArrayView<Point<spacedim>>              new_points) const;