From: wolf Date: Tue, 15 Mar 2005 16:53:12 +0000 (+0000) Subject: Inline functions don't need to be static. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e08ec1961b3e7f8e139bbc8f4a3b5fc7e85f8bf;p=dealii-svn.git Inline functions don't need to be static. git-svn-id: https://svn.dealii.org/trunk@10154 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/vector.templates.h b/deal.II/lac/include/lac/vector.templates.h index db7ce15a82..bd901547ec 100644 --- a/deal.II/lac/include/lac/vector.templates.h +++ b/deal.II/lac/include/lac/vector.templates.h @@ -41,7 +41,7 @@ namespace internal namespace VectorHelper { template - static inline Number sqr (const Number x) + inline Number sqr (const Number x) { return x*x; }