Hi,
I have this code:
template<typename T, unsigned int N>
class X
{
void doSomething(X<T,N> v)
{
std::cout << "hello world" << std::endl;
}
};
Qt Creator incorrectly underlines the line "void doSomething(X<T,N>
v)" saying "'N' is not a type name". It compiles fine though.
I am using the latest version from git.
Thanks
Frank