Re: template template parameters not working with STL containers
On 18 Feb., 14:26, vl106 <vl...@hotmail.com> wrote:
template <typename T,
template <typename> class CONT = std::deque>
[...]
error C3201: the template parameter list for class template
'std::deque' does not match the template parameter list for template
parameter 'CONT'
This is because std::deque is a class template that takes more than
one template parameter "typename T". It also takes an allocator
"class Alloc".
For reasons I'm not aware of the C++ standard says that you can't pass
such a class template -- even with a default allocator type -- as a
template template parameter that only takes one template parameter.
This is probably one reason why template template parameters are not
so popular. In future C++ you will be able to do a "template typedef"
template<typename T>
using vector_with_standard_alloc = std::vector<T>;
so you can use "vector_with_standard_alloc" as default template
argument. Another workaround is to define your own container class
template with only one template parameter (like MyVector).
Cheers!
SG
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]