August 19, 2005
Ilya Zaitseff escribió:
> 
> Did you mean:
> 
> template A(X, Y) {
> }
> 
> template A(X) {
> }
> 
> ?
> 
> Outline works correctly for me.

Try this:

//------------------------------
template Template(T, C)
{
	void foo(int i)
	{
		int í;
	}
}

template Template(T)
{
	void foo(int i)
	{
	}
}
//------------------------------

The problem seems to be the í.

-- 
Carlos Santander Bernal
August 19, 2005
Ilya Zaitseff escribió:
> 
> 
> ?
> Such possibility already exists by default.
> Did you try to double-click on the error? Eclipse must go to corresponding  location.

It doesn't work for me.

> 
> One thing: Eclipse can turn on filtering of D errors - turn it off in  Problems->Filters.
> 

I don't know where that is.

-- 
Carlos Santander Bernal
1 2 3
Next ›   Last »