Changeset 4392 for trunk/psLib/test
- Timestamp:
- Jun 24, 2005, 4:02:05 PM (21 years ago)
- Location:
- trunk/psLib/test
- Files:
-
- 5 edited
-
astronomy/tst_psAstrometry01.c (modified) (3 diffs)
-
collections/tst_psHash01.c (modified) (1 diff)
-
collections/tst_psHash02.c (modified) (1 diff)
-
collections/tst_psHash03.c (modified) (1 diff)
-
collections/tst_psHash04.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/astronomy/tst_psAstrometry01.c
r4229 r4392 5 5 * @author GLG, MHPCC 6 6 * 7 * @version $Revision: 1.3 1$ $Name: not supported by cvs2svn $8 * @date $Date: 2005-06- 13 20:34:51$7 * @version $Revision: 1.32 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2005-06-25 02:02:05 $ 9 9 * 10 10 * XXX: Must test … … 112 112 {\ 113 113 NAME = (psPlaneTransform *) psAlloc(sizeof(psPlaneTransform)); \ 114 psMemSetDeallocator(NAME, (psFreeF cn) psPlaneTransformFree); \114 psMemSetDeallocator(NAME, (psFreeFunc) psPlaneTransformFree); \ 115 115 NAME->x = psDPolynomial2DAlloc(2, 2, PS_POLYNOMIAL_ORD); \ 116 116 NAME->y = psDPolynomial2DAlloc(2, 2, PS_POLYNOMIAL_ORD); \ … … 122 122 {\ 123 123 NAME = (psPlaneDistort *) psAlloc(sizeof(psPlaneDistort)); \ 124 psMemSetDeallocator(NAME, (psFreeF cn) psPlaneDistortFree); \124 psMemSetDeallocator(NAME, (psFreeFunc) psPlaneDistortFree); \ 125 125 NAME->x = psDPolynomial4DAlloc(2, 2, 2, 2, PS_POLYNOMIAL_ORD); \ 126 126 NAME->y = psDPolynomial4DAlloc(2, 2, 2, 2, PS_POLYNOMIAL_ORD); \ -
trunk/psLib/test/collections/tst_psHash01.c
r3690 r4392 21 21 { 22 22 ID *id = psAlloc(sizeof(ID)); 23 psMemSetDeallocator(id,(psFreeF cn)IdFree);23 psMemSetDeallocator(id,(psFreeFunc)IdFree); 24 24 id->name = psStringCopy(name); 25 25 -
trunk/psLib/test/collections/tst_psHash02.c
r3690 r4392 24 24 { 25 25 ID *id = psAlloc(sizeof(ID)); 26 psMemSetDeallocator(id,(psFreeF cn)IdFree);26 psMemSetDeallocator(id,(psFreeFunc)IdFree); 27 27 id->name = psStringCopy(name); 28 28 -
trunk/psLib/test/collections/tst_psHash03.c
r3690 r4392 26 26 27 27 id = psAlloc(sizeof(ID)); 28 psMemSetDeallocator(id,(psFreeF cn)IdFree);28 psMemSetDeallocator(id,(psFreeFunc)IdFree); 29 29 30 30 id->name = psStringCopy(name); -
trunk/psLib/test/collections/tst_psHash04.c
r3690 r4392 19 19 { 20 20 ID *id = psAlloc(sizeof(ID)); 21 psMemSetDeallocator(id,(psFreeF cn)IdFree);21 psMemSetDeallocator(id,(psFreeFunc)IdFree); 22 22 23 23 id->name = psStringCopy(name);
Note:
See TracChangeset
for help on using the changeset viewer.
