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

WaE: possibly uninitialized

üst 098d2591
...@@ -608,7 +608,7 @@ start: ...@@ -608,7 +608,7 @@ start:
} }
case SbxSINGLE: case SbxSINGLE:
{ {
float f; float f(0.0);
pDec->getSingle( f ); pDec->getSingle( f );
p->nSingle = f; p->nSingle = f;
break; break;
...@@ -616,7 +616,7 @@ start: ...@@ -616,7 +616,7 @@ start:
case SbxDATE: case SbxDATE:
case SbxDOUBLE: case SbxDOUBLE:
{ {
double d; double d(0.0);
pDec->getDouble( d ); pDec->getDouble( d );
p->nDouble = d; p->nDouble = d;
break; 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