From e7cd27b084e0e30bbb3120fae2aaec2c0e5cbfc9 Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Thu, 2 Jul 2020 12:48:08 +0200 Subject: [PATCH] Remve some inlines in tria_accessor.h --- include/deal.II/grid/tria_accessor.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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: -- 2.39.5