Tagged Questions

55
votes
3answers
5k views

Where and why do I have to put the “template” and “typename” keywords?

In templates, where and why do I have to put typename and template on dependent names? What exactly are dependent names anyway? I have the following code: template <typename T, typename Tail> ...
6
votes
1answer
192 views

Compiler error when using integer as template parameter

What is wrong with the following piece of code? template<typename X> struct A { template<int N> int foo() const { return N; } }; ...
5
votes
5answers
162 views

multiple nested dependent names - where to stick the typename keyword?

This question was inspired by this other question. While trying to answer that question, I understood that I have a lot of questions myself. So... Consider the following: struct S1 { enum { value ...
4
votes
2answers
108 views

Visual C++ Compiler allows dependent-name as a type without “typename”?

Today one of my friends told me that the following code compiles well on his Visual Studio 2008: #include <vector> struct A { static int const const_iterator = 100; }; int i; template ...
1
vote
2answers
716 views

C++: Accessing types from dependent base classes

Does anyone know why using-declarations don't seem to work for importing type names from dependent base classes? They work for member variables and functions, but at least in GCC 4.3, they seem to be ...
0
votes
2answers
272 views

Specializing member function for non-template class in C++

I'm trying to specialize a template member function of a non-template class using a templatized parameter: #include <array> class C { public: template<class Container> void Foo( ...