Changeset 13251


Ignore:
Timestamp:
09/04/12 16:26:49 (13 years ago)
Author:
Mathieu Morlighem
Message:

CHG: getting rid of xfree

Location:
issm/trunk-jpl/src/c/shared/Alloc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/c/shared/Alloc/alloc.cpp

    r13248 r13251  
    2727#include "../../classes/objects/objects.h"
    2828
    29 void xfree(void* *pv){
    30 
    31         if (pv && *pv){
    32                 free(*pv);
    33 
    34                 *pv=NULL;
    35         }
    36 }
    37 
    3829void xdelete(Matrix<IssmDouble>** pv){
    3930       
  • TabularUnified issm/trunk-jpl/src/c/shared/Alloc/alloc.h

    r13248 r13251  
    77
    88#include "../../include/include.h"
     9#include "./xNewDelete.h"
    910
    1011template <class doubletype> class Matrix;
    1112template <class doubletype> class Vector;
    12 void xfree(void** pvptr);
    1313void xdelete(Matrix<IssmDouble>** pvptr);
    1414void xdelete(Vector<IssmDouble>** pvptr);
    15 
    16 #include "./xNewDelete.h"
    1715#endif
Note: See TracChangeset for help on using the changeset viewer.