Kaydet (Commit) 16d80302 authored tarafından Caolán McNamara's avatar Caolán McNamara

WaE: possibly uninitialized

üst 098d2591
......@@ -608,7 +608,7 @@ start:
}
case SbxSINGLE:
{
float f;
float f(0.0);
pDec->getSingle( f );
p->nSingle = f;
break;
......@@ -616,7 +616,7 @@ start:
case SbxDATE:
case SbxDOUBLE:
{
double d;
double d(0.0);
pDec->getDouble( d );
p->nDouble = d;
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment