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
Using overload deambiguation seems to always select the first member of the overload set. Reading #527, I thought this was already implemented.
namespaceboost::mysql {
/// Docs for the integral overload.voidf(int);
/// Docs for the floating point overload.voidf(float);
/// \copydoc f(float)voidother(double);
} // namespace boost::mysql
The text was updated successfully, but these errors were encountered:
Using overload deambiguation seems to always select the first member of the overload set. Reading #527, I thought this was already implemented.
The text was updated successfully, but these errors were encountered: