Closed beta 1.3.7.1: Fix Release build.

This commit is contained in:
John Preston 2018-06-22 01:01:45 +01:00
parent b53e40f1bf
commit 52f2f96f36
1 changed files with 4 additions and 1 deletions

View File

@ -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)...);
}