Call non-specialised template class function from specialized template class function
问题 Is it possible to call a function defined in a non-specialised template class from a specialised template class? Here is an example of what i am attempting: template <typename T> struct Convert { static inline void toString(unsigned num, unsigned places, std::string& str) { ... } }; template <> struct Convert<int8_t> { static inline void toString(unsigned num, std::string& str) { Convert<int8_t>::toString(num, digitis(num), str); } }; GCC complains that it can't see the non-specialised class