Open
Description
Using overload deambiguation seems to always select the first member of the overload set. Reading #527, I thought this was already implemented.
namespace boost::mysql {
/// Docs for the integral overload.
void f(int);
/// Docs for the floating point overload.
void f(float);
/// \copydoc f(float)
void other(double);
} // namespace boost::mysql