www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - False no return warning

when compiling with -w dmd says my function is not returning value
if auto is removed all goes ok

int ManageGotoLine()
{
	auto GotoLineDialog g=new GotoLineDialog;
	g.Create(this);
	sbtrack(theApp.m_readytext);
	Activate();
	return 1;
}
Mar 23 2005