Hi,
could anyone tell what's wrong with this?:
template<int x>
struct Outer {
struct Inner {
template<int yvoid finner() {}
};
Inner inner;
void fouter() {inner.finner<0 >();}
};
Thanks,
Christof
could anyone tell what's wrong with this?:
template<int x>
struct Outer {
struct Inner {
template<int yvoid finner() {}
};
Inner inner;
void fouter() {inner.finner<0 >();}
};
Thanks,
Christof
Comment