From b14c419ba4764ff44c47260a443af982a06137e1 Mon Sep 17 00:00:00 2001 From: Reza Rastak Date: Sat, 17 Aug 2019 12:03:43 -0700 Subject: [PATCH] added inlined keyword to function definitions in quadrature_point_data.h --- include/deal.II/base/quadrature_point_data.h | 26 ++++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/include/deal.II/base/quadrature_point_data.h b/include/deal.II/base/quadrature_point_data.h index f83a9b4c1a..633f54f8dc 100644 --- a/include/deal.II/base/quadrature_point_data.h +++ b/include/deal.II/base/quadrature_point_data.h @@ -564,7 +564,7 @@ namespace parallel template template -void +inline void CellDataStorage::initialize( const CellIteratorType &cell, const unsigned int n_q_points) @@ -594,7 +594,7 @@ CellDataStorage::initialize( template template -void +inline void CellDataStorage::initialize( const CellIteratorType &cell_start, const CellIteratorType &cell_end, @@ -608,7 +608,7 @@ CellDataStorage::initialize( template -bool +inline bool CellDataStorage::erase(const CellIteratorType &cell) { const auto key = cell->id(); @@ -630,7 +630,7 @@ CellDataStorage::erase(const CellIteratorType &cell) template -void +inline void CellDataStorage::clear() { // Do not call @@ -655,7 +655,7 @@ CellDataStorage::clear() template template -std::vector> +inline std::vector> CellDataStorage::get_data( const CellIteratorType &cell) { @@ -684,7 +684,7 @@ CellDataStorage::get_data( template template -std::vector> +inline std::vector> CellDataStorage::get_data( const CellIteratorType &cell) const { @@ -720,7 +720,7 @@ CellDataStorage::get_data( * quadrature point in the DataType class. */ template -void +inline void pack_cell_data(const CellIteratorType & cell, const CellDataStorage *data_storage, FullMatrix & matrix_data) @@ -754,7 +754,7 @@ pack_cell_data(const CellIteratorType & cell, * the opposite of the pack function above. */ template -void +inline void unpack_to_cell_data(const CellIteratorType & cell, const FullMatrix & values_at_qp, CellDataStorage *data_storage) @@ -787,7 +787,7 @@ namespace parallel namespace distributed { template - ContinuousQuadratureDataTransfer:: + inline ContinuousQuadratureDataTransfer:: ContinuousQuadratureDataTransfer(const FiniteElement &projection_fe_, const Quadrature & lhs_quadrature, const Quadrature & rhs_quadrature) @@ -819,7 +819,7 @@ namespace parallel template - void + inline void ContinuousQuadratureDataTransfer:: prepare_for_coarsening_and_refinement( parallel::distributed::Triangulation & tr_, @@ -867,7 +867,7 @@ namespace parallel template - void + inline void ContinuousQuadratureDataTransfer::interpolate() { triangulation->notify_ready_to_unpack( @@ -887,7 +887,7 @@ namespace parallel template - std::vector + inline std::vector ContinuousQuadratureDataTransfer::pack_function( const typename parallel::distributed::Triangulation::cell_iterator &cell, @@ -907,7 +907,7 @@ namespace parallel template - void + inline void ContinuousQuadratureDataTransfer::unpack_function( const typename parallel::distributed::Triangulation::cell_iterator &cell, -- 2.39.5