You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix MSVC compilation with ASignal<> (#479)
fix for a compilation failure on MSVC (errors C2338 and C2672) when ASignal<> (a signal with no arguments) is used. The issue was caused by an ill-formed std::get<0> on an empty std::tuple<> within a discarded if constexpr statement, which MSVC correctly flags.