IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 7, 2005, 10:27:42 AM (21 years ago)
Author:
desonia
Message:

changed name of p_psMemSetDeallocator/p_psMemGetDeallocator to
psMemSetDeallocator/psMemGetDeallocator.

-rdd

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psStats.c

    r3551 r3682  
    99 *  @author GLG, MHPCC
    1010 *
    11  *  @version $Revision: 1.124 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-03-29 22:51:24 $
     11 *  @version $Revision: 1.125 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-04-07 20:27:41 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    18331833    // bins, then there are N+1 bounds to those bins.
    18341834    newHist = (psHistogram* ) psAlloc(sizeof(psHistogram));
    1835     p_psMemSetDeallocator(newHist, (psFreeFcn) histogramFree);
     1835    psMemSetDeallocator(newHist, (psFreeFcn) histogramFree);
    18361836    newHist->bounds = psVectorAlloc(n + 1, PS_TYPE_F32);
    18371837    newHist->bounds->n = newHist->bounds->nalloc;
     
    18801880    // Allocate memory for the new histogram structure.
    18811881    newHist = (psHistogram* ) psAlloc(sizeof(psHistogram));
    1882     p_psMemSetDeallocator(newHist, (psFreeFcn) histogramFree);
     1882    psMemSetDeallocator(newHist, (psFreeFcn) histogramFree);
    18831883    newHist->bounds = psVectorAlloc(bounds->n, PS_TYPE_F32);
    18841884    newHist->bounds->n = newHist->bounds->nalloc;
Note: See TracChangeset for help on using the changeset viewer.