From: Peter Munch Date: Thu, 2 Jul 2020 10:48:08 +0000 (+0200) Subject: Remve some inlines in tria_accessor.h X-Git-Tag: v9.3.0-rc1~1342^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10644%2Fhead;p=dealii.git Remve some inlines in tria_accessor.h --- diff --git a/include/deal.II/grid/tria_accessor.h b/include/deal.II/grid/tria_accessor.h index 703cc2ed6b..5f12025f74 100644 --- a/include/deal.II/grid/tria_accessor.h +++ b/include/deal.II/grid/tria_accessor.h @@ -1608,13 +1608,13 @@ public: /** * Number of vertices. */ - inline unsigned int + unsigned int n_vertices() const; /** * Number of lines. */ - inline unsigned int + unsigned int n_lines() const; /** @@ -1622,21 +1622,21 @@ public: * * @note Only implemented for cells (dim==spacedim). */ - inline unsigned int + unsigned int n_faces() const; /** * Return an object that can be thought of as an array containing all indices * from zero to n_vertices(). */ - inline std_cxx20::ranges::iota_view + std_cxx20::ranges::iota_view vertex_indices() const; /** * Return an object that can be thought of as an array containing all indices * from zero to n_lines(). */ - inline std_cxx20::ranges::iota_view + std_cxx20::ranges::iota_view line_indices() const; /** @@ -1645,7 +1645,7 @@ public: * * @note Only implemented for cells (dim==spacedim). */ - inline std_cxx20::ranges::iota_view + std_cxx20::ranges::iota_view face_indices() const; /** @@ -2674,27 +2674,27 @@ public: /** * Number of vertices. */ - inline unsigned int + unsigned int n_vertices() const; /** * Number of lines. */ - inline unsigned int + unsigned int n_lines() const; /** * Return an object that can be thought of as an array containing all indices * from zero to n_vertices(). */ - inline std_cxx20::ranges::iota_view + std_cxx20::ranges::iota_view vertex_indices() const; /** * Return an object that can be thought of as an array containing all indices * from zero to n_lines(). */ - inline std_cxx20::ranges::iota_view + std_cxx20::ranges::iota_view line_indices() const; protected: