From: Wolfgang Bangerth Date: Tue, 15 Mar 2005 16:53:12 +0000 (+0000) Subject: Inline functions don't need to be static. X-Git-Tag: v8.0.0~14382 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b45f7f2861e76423b7e1244a5a361258b27fd0a;p=dealii.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; }