I don’t understand why this doesn’t compile:
struct A
{};
template<class T>
struct B
{};
template<template<class> class T1, class T2>
struct C
{};
int
main (int ac, char **av)
{
typedef B<double> b; //compiles
typedef B<const double> b_const; //compiles
typedef B<A> ba; //compiles
typedef B<const A> ba_const; //compiles
typedef C<B,double> c1; //compiles
typedef C<B,const double> c2; //compiles
typedef C<const B,double> c3; //ISO C++ forbids declaration of ‘type name’ with no type
}
(I find the reference to the standard a little cryptic)
What do I have to change to make it compile?
EDIT:
Compiler details (it seems to be relevent):
Using built-in specs.
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.4.4-14ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.4 --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5)
EDIT2:
By means of explaination, I am trying to do something like this:
template<template<class> class TheContainer, class T>
struct Iterator
template<class T>
struct Container
typedef Iterator<Container, double> iterator;
typedef Iterator<const Container, double> const_iterator;
The technique for non-templated containers is found at the end of this boost doc: http://www.boost.org/doc/libs/1_46_1/libs/iterator/doc/iterator_facade.html
I guess the solution is not to nestle the templates. In retrospect it seems obvious.
The first argument to C isn’t a type, hence it makes no sense to pass in a const-type as its arg. A template can’t be const or non-const, only types can be const or non-const. What does
const Beven mean?const intmakes sense.const vector<int>makes sense, as doesvector<const int>. But what wouldconst vectormean?(Pinch-of-salt warning: I wasn’t even aware of template-template-classes before seeing this question.)
To make this more concrete, imagine B and C are:
c2 will be of type
What would you expect c3 to be? That t1 would itself be const, while t1.b is non-const? I suppose that makes sense.