2
0
mirror of https://github.com/boostorg/asio.git synced 2026-02-27 03:02:09 +00:00

Fix multi-signature handling when variadic templates are disabled.

This commit is contained in:
Christopher Kohlhoff
2021-10-17 11:10:23 +11:00
parent 9e220ac0c9
commit f90ce170d5

View File

@@ -312,6 +312,12 @@ struct are_simple_completion_signatures<Sig0, Sig1, Sig2>
{
};
template <>
struct simple_completion_signature<void>
{
typedef void type;
};
template <typename R>
struct simple_completion_signature<R()>
{