diff --git a/Telegram/SourceFiles/base/unique_function.h b/Telegram/SourceFiles/base/unique_function.h index 46c686726..48c4cbfc2 100644 --- a/Telegram/SourceFiles/base/unique_function.h +++ b/Telegram/SourceFiles/base/unique_function.h @@ -124,7 +124,10 @@ public: _impl.swap(other._impl); } - template + template < + typename ...OtherArgs, + typename = decltype(std::declval>()( + std::declval()...))> Return operator()(OtherArgs &&...args) { return _impl(std::forward(args)...); }