Hi All
I've been using the 'new' operator to allocate vectors as follows:
DPoint3d *pnts = new DPoint3d[_size_];
........
delete [] pnts;
My question is: is it safer to use dlmSystem_mdlMalloc and dlmSystem_mdlFree to allocate and free memory…
Hi All!
I've been using the 'new' operator to allocate vectors as follows:
DPoint3d *pnts = new DPoint3d[_size_];
........
delete [] pnts;
My question is: is it safer to use dlmSystem_mdlMalloc and dlmSystem_mdlFree to allocate and free memory…