Member function overloading/template specialization issue
- by Ferruccio
I've been trying to call the overloaded table::scan_index(std::string, ...) member function without success. For the sake of clarity, I have stripped out all non-relevant code.
I have a class called table which has an overloaded/templated member function named scan_index() in order to handle strings as a special case.
class table :…