large array modifications

This commit is contained in:
Jeff Hill
2002-05-29 00:19:31 +00:00
parent 565a372df1
commit a08fc2c551
8 changed files with 86 additions and 49 deletions

View File

@@ -190,7 +190,7 @@ caStatus exVectorPV::updateValue(smartConstGDDPointer pValueIn)
return S_casApp_outOfBounds;
}
aitFloat32 *pF;
aitFloat64 *pF;
int gddStatus;
//
@@ -214,7 +214,7 @@ caStatus exVectorPV::updateValue(smartConstGDDPointer pValueIn)
//
// allocate array buffer
//
pF = new aitFloat32 [this->info.getElementCount()];
pF = new aitFloat64 [this->info.getElementCount()];
if (!pF) {
return S_casApp_noMemory;
}