How can you not call int round(const double&);
int round(const double&);
auto i = round(42.21);
double d = 4.2; auto i = round(d);
const double d = 42.0; round(&d);
double d = round(int(-19));