IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 12433


Ignore:
Timestamp:
Mar 13, 2007, 4:35:02 PM (19 years ago)
Author:
magnier
Message:

changing PS_ASSERT_PTRS_TYPE_EQUAL_GENERAL to PS_ASSERT_GENERAL_PTR_TYPE_EQUAL for consistency

Location:
trunk/psLib/src
Files:
2 edited

Legend:

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

    r12431 r12433  
    3030 *  @author Robert DeSonia, MHPCC
    3131 *
    32  *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
    33  *  @date $Date: 2007-03-14 00:39:50 $
     32 *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
     33 *  @date $Date: 2007-03-14 02:35:02 $
    3434 *
    3535 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    395395    PS_ASSERT_GENERAL_PTR_NON_NULL(op, psBinaryOp_EXIT);
    396396
    397     PS_ASSERT_PTRS_TYPE_EQUAL_GENERAL(input1,input2, psBinaryOp_EXIT);
     397    PS_ASSERT_GENERAL_PTR_TYPE_EQUAL(input1,input2, psBinaryOp_EXIT);
    398398
    399399    PS_ASSERT_PTR_DIMEN_GENERAL_NOT(input1, PS_DIMEN_OTHER, psBinaryOp_EXIT);
  • trunk/psLib/src/sys/psAssert.h

    r12297 r12433  
    256256}
    257257
    258 #define PS_ASSERT_PTR_TYPE_EQUAL(PTR1, PTR2, RVAL) PS_ASSERT_PTRS_TYPE_EQUAL_GENERAL(PTR1, PTR2, return RVAL)
    259 #define PS_ASSERT_PTRS_TYPE_EQUAL_GENERAL(PTR1, PTR2, CLEANUP) \
     258#define PS_ASSERT_PTR_TYPE_EQUAL(PTR1, PTR2, RVAL) PS_ASSERT_GENERAL_PTR_TYPE_EQUAL(PTR1, PTR2, return RVAL)
     259#define PS_ASSERT_GENERAL_PTR_TYPE_EQUAL(PTR1, PTR2, CLEANUP) \
    260260if (PTR1->type.type != PTR2->type.type) { \
    261261    psError(PS_ERR_BAD_PARAMETER_TYPE, true, \
Note: See TracChangeset for help on using the changeset viewer.