From ccb70d5613b4a05edd3eba4feb2105453f5a6ad9 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 23 Jun 2016 13:41:58 -0500 Subject: [PATCH] Remove 'inline' tag on declarations. There is no point marking a *declaration* as inline, since there is no definition that could actually be inlined. My compiler also complains about it. --- include/deal.II/base/mpi.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/include/deal.II/base/mpi.h b/include/deal.II/base/mpi.h index 89ccd4febd..9034e97520 100644 --- a/include/deal.II/base/mpi.h +++ b/include/deal.II/base/mpi.h @@ -145,7 +145,6 @@ namespace Utilities * Input and output arrays may be the same. */ template - inline void sum (const T (&values)[N], const MPI_Comm &mpi_communicator, T (&sums)[N]); @@ -158,7 +157,6 @@ namespace Utilities * Input and output vectors may be the same. */ template - inline void sum (const std::vector &values, const MPI_Comm &mpi_communicator, std::vector &sums); @@ -170,7 +168,6 @@ namespace Utilities * Input and output vectors may be the same. */ template - inline void sum (const Vector &values, const MPI_Comm &mpi_communicator, Vector &sums); @@ -182,7 +179,6 @@ namespace Utilities * @relates SymmetricTensor */ template - inline SymmetricTensor sum (const SymmetricTensor &local, const MPI_Comm &mpi_communicator); @@ -193,7 +189,6 @@ namespace Utilities * @relates Tensor */ template - inline Tensor sum (const Tensor &local, const MPI_Comm &mpi_communicator); @@ -230,7 +225,6 @@ namespace Utilities * Input and output arrays may be the same. */ template - inline void max (const T (&values)[N], const MPI_Comm &mpi_communicator, T (&maxima)[N]); @@ -244,7 +238,6 @@ namespace Utilities * Input and output vectors may be the same. */ template - inline void max (const std::vector &values, const MPI_Comm &mpi_communicator, std::vector &maxima); @@ -281,7 +274,6 @@ namespace Utilities * Input and output arrays may be the same. */ template - inline void min (const T (&values)[N], const MPI_Comm &mpi_communicator, T (&minima)[N]); @@ -295,7 +287,6 @@ namespace Utilities * Input and output vectors may be the same. */ template - inline void min (const std::vector &values, const MPI_Comm &mpi_communicator, std::vector &minima); -- 2.39.5