Can I use template aliases as template template parameters?

template <template <typename> class> struct foo {};

template <typename T> using simple_ptr = std::unique_ptr<T>;

foo<std::unique_ptr> a; // this doesn't work, std::unique_ptr has two parameters
foo<simple_ptr> b; // does this work?
link|improve this question

1  
I suppose the question should have rather been "should this work?" (gcc does not seem to support template aliases yet, so it's probably not possible to try it). – Jan Hudec Sep 6 '11 at 12:23
Are you looking for workaround in case if alias doesn't work? – Nawaz Sep 6 '11 at 12:32
@Nawaz: Well, turns out it does work, but if you post a workaround for pre-C++11 (or for any weird compiler that supports aliases but doesn't support this), I'll upvote it. – R. Martinho Fernandes Sep 6 '11 at 13:39
feedback

1 Answer

up vote 12 down vote accepted

Yes, it is apparently allowed. According to the latest draft of the upcoming standard I could find, it is stated that

A template-argument for a template template-parameter shall be the name of a class template or an alias template [...].

However, alias templates seems very seldomly supported at the moment, so you might have some trouble making it work with most compilers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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