Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
#include <list>

template < class TYPE > 
class CIndex : protected std::list < TYPE >
{
public:
    typedef std::list < TYPE >::iterator  CIndexIt;
    typedef std::list < TYPE >::difference_type  CIndexDiff;

The error happens in the last line of the above code.

I've seen this and the msdn page but both don't solve my error.

Anyone knows what could be causing the problem?

EDIT:
The reason the first link's solution didn't work was because although adding typename worked for the above code, it didn't work for the below code:

#include<hash_map>
class CWItems
{
typedef stdext::hash_map < unsigned long, CWksItem* >   CItem;
CItem mItems;

So I thought I was doing the wrong thing by adding typename everywhere. Using typename after the typedef in this code caused this error:

error C2899: typename cannot be used outside a template declaration

Without typename, the error shown is error C4430: missing type specifier - int assumed. Note: C++ does not support default-int, at the CItem mItems; line.

share|improve this question
possible duplicate of Using types defined in template arguments – Charles Bailey Mar 21 '12 at 8:40
Useful to have the link you posted. My problem still isn't solved though. Have edited my question to add more info. Help? – Nav Mar 21 '12 at 9:10
CWItems is not a class template so you can't have any dependent names. Where is CWksItem declared? – Charles Bailey Mar 21 '12 at 9:46
CWksItem is mentioned as class CWksItem; (forward declaration). But the error persists even if CWksItem is substituted with int. – Nav Mar 21 '12 at 10:15
I think the problem is something else. I wrote some standalone code for the hash_map and it worked. Thank you. – Nav Mar 21 '12 at 10:30

2 Answers

up vote 1 down vote accepted

You need to add the typename keyword because std::list<TYPE>::iterator and std::list<TYPE>::difference_type are dependent names:

typedef typename std::list < TYPE >::iterator  CIndexIt;
typedef typename std::list < TYPE >::difference_type  CIndexDiff;

See http://pages.cs.wisc.edu/~driscoll/typename.html for more information.

share|improve this answer
The problem showed up in another part of the code, and this time typename didn't solve it. I've mentioned more in the edited section of my question. Help? – Nav Mar 21 '12 at 9:03

You are missing the typename keyword exactly as in the question that you linked to:

typedef typename std::list < TYPE >::iterator  CIndexIt;
typedef typename std::list < TYPE >::difference_type  CIndexDiff;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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