Commit f38ca4a1 authored by Dominik Charousset's avatar Dominik Charousset

Remove misplaced static

parent 6dc152b0
...@@ -33,7 +33,7 @@ struct arg_wrapper { ...@@ -33,7 +33,7 @@ struct arg_wrapper {
/// Used to implement `CAF_ARG`. /// Used to implement `CAF_ARG`.
template <class T> template <class T>
static arg_wrapper<T> make_arg_wrapper(const char* name, const T& value) { arg_wrapper<T> make_arg_wrapper(const char* name, const T& value) {
return {name, value}; return {name, value};
} }
......
...@@ -23,7 +23,7 @@ namespace caf { ...@@ -23,7 +23,7 @@ namespace caf {
namespace detail { namespace detail {
template <class T> template <class T>
static T gcd(T a, T b) { T gcd(T a, T b) {
T r; T r;
while (b != 0) { while (b != 0) {
r = a % b; r = a % b;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment