Skip to content

Commit 3da1792

Browse files
Fixed format via treefmt
1 parent cefb0c4 commit 3da1792

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libs/bsw/util/include/util/estd/functional.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ struct function<R(Ps...)>
7777
template<typename T, R (T::*M)(Ps...) const>
7878
static function create(T const& t)
7979
{
80-
return function(&member_function_caller<T, M>, const_cast<void*>(static_cast<void const*>(&t)));
80+
return function(
81+
&member_function_caller<T, M>, const_cast<void*>(static_cast<void const*>(&t)));
8182
}
8283

8384
/**

0 commit comments

Comments
 (0)