Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to specialize this template for any basic_string's?

template<class T> struct X {};

Since basic_string is a template itself, I know this would be a solution:

template <template <class, class, class> class T> struct X {}; template <> struct X<basic_string> {};

However, I would like to know if the language allows to preserve the first template definition, by specializing it somehow for basic_string's only.

share|improve this question

1 Answer

up vote 3 down vote accepted

Yes:

#include <string>

template <typename> struct X;

template <typename TChar, typename TTraits, typename TAlloc>
struct X<std::basic_string<TChar, TTraits, TAlloc>>
{
    // ...
};

Your primary template takes one type parameter, so every specialization must supply one type parameter for X, one way or another.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.