From: Wolfgang Bangerth Date: Thu, 23 Jun 2016 18:41:58 +0000 (-0500) Subject: Remove 'inline' tag on declarations. X-Git-Tag: v8.5.0-rc1~964^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ccb70d5613b4a05edd3eba4feb2105453f5a6ad9;p=dealii.git 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. --- 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);