rearranged to suit GNU compiler

This commit is contained in:
Jeff Hill
2001-02-20 19:18:53 +00:00
parent 8db5931fb2
commit 0940527c65
+2 -1
View File
@@ -196,7 +196,8 @@ void gddAppFuncTable<PV>::newTbl(unsigned newApplTypeMax)
pMNewFuncTbl = (gddAppFuncTableStatus (PV::**)(gdd &))
new char[sizeof( gddAppFuncTableStatus (PV::*)(gdd &) ) * maxApp];
# else
pMNewFuncTbl = new gddAppFuncTableStatus (PV::*)(gdd &) [maxApp];
typedef gddAppFuncTableStatus (PV::*pMF_t)(gdd &);
pMNewFuncTbl = new pMF_t [maxApp];
# endif
if (pMNewFuncTbl) {
for (i=0u; i<maxApp; i++) {