Issue with class template partial specialization
- by DeadMG
I've been trying to implement a function that needs partial template specializations and fallen back to the static struct technique, and I'm having a number of problems.
template<typename T> struct PushImpl<const T&> {
typedef T* result_type;
typedef const T& argument_type;
…