Changeset 12433
- Timestamp:
- Mar 13, 2007, 4:35:02 PM (19 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 2 edited
-
math/psBinaryOp.c (modified) (2 diffs)
-
sys/psAssert.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psBinaryOp.c
r12431 r12433 30 30 * @author Robert DeSonia, MHPCC 31 31 * 32 * @version $Revision: 1.1 3$ $Name: not supported by cvs2svn $33 * @date $Date: 2007-03-14 0 0:39:50$32 * @version $Revision: 1.14 $ $Name: not supported by cvs2svn $ 33 * @date $Date: 2007-03-14 02:35:02 $ 34 34 * 35 35 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 395 395 PS_ASSERT_GENERAL_PTR_NON_NULL(op, psBinaryOp_EXIT); 396 396 397 PS_ASSERT_ PTRS_TYPE_EQUAL_GENERAL(input1,input2, psBinaryOp_EXIT);397 PS_ASSERT_GENERAL_PTR_TYPE_EQUAL(input1,input2, psBinaryOp_EXIT); 398 398 399 399 PS_ASSERT_PTR_DIMEN_GENERAL_NOT(input1, PS_DIMEN_OTHER, psBinaryOp_EXIT); -
trunk/psLib/src/sys/psAssert.h
r12297 r12433 256 256 } 257 257 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) \ 260 260 if (PTR1->type.type != PTR2->type.type) { \ 261 261 psError(PS_ERR_BAD_PARAMETER_TYPE, true, \
Note:
See TracChangeset
for help on using the changeset viewer.
