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.

The following code compiles fine under Visual C++ 2010, but not under GCC 4.6 from the Android NDK r8b.

template<typename A>
struct foo
{
    template<typename B>
    B method()
    {
        return B();
    }
};

template<typename A>
struct bar
{
    bar()
    {
        f_.method<int>(); // error here
    }

private:
    foo<A> f_;
};

The error GCC gives is

error : expected primary-expression before 'int'
error : expected ';' before 'int'

for the marked line. For the life of me I can't figure out whats wrong.

share|improve this question
1  
duplicated from stackoverflow.com/questions/1840253/… – Ninten Sep 27 '12 at 20:08

1 Answer

up vote 8 down vote accepted

GCC is correct, since f_ is of type foo<A> which depends on the template parameter A, you need to qualify the call to method with the template keyword:

f_.template method<int>();  // This will work
share|improve this answer
Ah yes of course. Thanks, i always confuse when to use that qualifier. – Eoin Sep 27 '12 at 21:37

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.