mirror of https://github.com/procxx/kepka.git
Closed beta 1.3.7.1: Fix Release build.
This commit is contained in:
parent
b53e40f1bf
commit
52f2f96f36
|
@ -124,7 +124,10 @@ public:
|
|||
_impl.swap(other._impl);
|
||||
}
|
||||
|
||||
template <typename ...OtherArgs>
|
||||
template <
|
||||
typename ...OtherArgs,
|
||||
typename = decltype(std::declval<std::function<Return(Args...)>>()(
|
||||
std::declval<OtherArgs>()...))>
|
||||
Return operator()(OtherArgs &&...args) {
|
||||
return _impl(std::forward<OtherArgs>(args)...);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue