digitalmars.D.bugs - False no return warning
- bobef (10/10) Mar 23 2005 when compiling with -w dmd says my function is not returning value
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








bobef <bobef paintballforce.com>