From: Wolfgang Bangerth Date: Sun, 13 Mar 2005 06:26:53 +0000 (+0000) Subject: Remove a static declaration that the Sun CC compiler didn't like and that indeed... X-Git-Tag: v8.0.0~14418 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cbc4e137287e227fb6b6e64706ad806eaa000cb2;p=dealii.git Remove a static declaration that the Sun CC compiler didn't like and that indeed didn't make much sense here. git-svn-id: https://svn.dealii.org/trunk@10118 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/thread_management.h b/deal.II/base/include/base/thread_management.h index be3b8b2c12..9943c4d0a3 100644 --- a/deal.II/base/include/base/thread_management.h +++ b/deal.II/base/include/base/thread_management.h @@ -1765,9 +1765,9 @@ namespace Threads * type. */ template - static inline void call (PFun fun_ptr, - ArgList &arg_list, - internal::return_value &ret_val) + inline void call (PFun fun_ptr, + ArgList &arg_list, + internal::return_value &ret_val) { Caller::do_call (fun_ptr, arg_list, ret_val, int2type::value>()); @@ -1785,10 +1785,10 @@ namespace Threads * return type. */ template - static inline void call (PFun fun_ptr, - C &obj, - ArgList &arg_list, - internal::return_value &ret_val) + inline void call (PFun fun_ptr, + C &obj, + ArgList &arg_list, + internal::return_value &ret_val) { Caller::do_call (fun_ptr, obj, arg_list, ret_val, int2type::value>());