C++: Template specialization of class member function, differing from another member function only in accepting parameters by reference, not by value
Within template class Bank<T>
, my goal is to create an overload for type Account
to member function void Bank<T>::makeTransfer(T, T, const double)
, of signature void Bank<Account>::makeTransfer(Account&, Account&, const double)
.