vote up 2 vote down star
1

Hi,

i have the following template method,

template <class T>
void Class::setData( vector<T> data )
{    
    vector<T>::iterator it;
}

and i'm getting the following compilation error ( XCode/gcc )

error: expected `;' before 'it'

i found someone else with a similar problem here (read down to see it's the same even though it starts out with a different issue) but they seem to have resolved by updating Visual Studio. This makes me guess that it is a compiler issue and that it should compile, is that correct? Iteration via indexing from 0 to size works, however it is not the way i would prefer to implement this function. Is there another way around this? Thanks

flag

Note: consider passing in "vector<T> &data", or maybe "vector<T> const &data" not "vector<T> data". The former two will pass in a reference to the vector, the latter will make a full copy of the vector. – Mr Fooz Feb 27 at 13:16
Of course, it was just an example :) – DavidG Mar 2 at 11:26

3 Answers

vote up 6 vote down check

Classic case of when to use the typename keyword. Hoping that you have #include-ed vector and iterator and have a using namespace std; somewhere in scope. Use:

typename vector<T>::iterator it;

Look up dependent names. Start here.

link|flag
wow thanks, awesome link. – DavidG Feb 27 at 13:07
vote up 1 vote down

I think you are missing a typename:

#include <vector>
using namespace std;

class Class{
public:
    template <class T>
    void setData( vector<T> data ) {
        typename vector<T>::iterator it;
    }
};
link|flag
vote up 0 vote down

Try:

template <class T>
void Class::setData( std::vector<T> data )
{    
    std::vector<T>::iterator it;
}

Just is case it's a missing using statement?

link|flag
If he had missed the using statement he would also get an error on the function signature. – orsogufo Feb 27 at 12:55
no, my namespaces and includes are in a pre-compiled header – DavidG Feb 27 at 12:57

Your Answer

Get an OpenID
or

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