Tagged Questions
2
votes
2answers
2k views
How to partially specialize a class template for all derived types?
I want to partially specialize an existing template that I cannot change (std::tr1::hash) for a base class and all derived classes. The reason is that I'm using the curiously-recurring template ...