Changeset 9552 for trunk/psLib/src/math/psBinaryOp.c
- Timestamp:
- Oct 13, 2006, 2:02:31 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psBinaryOp.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psBinaryOp.c
r8627 r9552 30 30 * @author Robert DeSonia, MHPCC 31 31 * 32 * @version $Revision: 1.1 0$ $Name: not supported by cvs2svn $33 * @date $Date: 2006- 08-26 04:34:28$32 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 33 * @date $Date: 2006-10-14 00:02:31 $ 34 34 * 35 35 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 423 423 PS_ASSERT_PTR_DIMEN_GENERAL_NOT(input2, PS_DIMEN_OTHER, psBinaryOp_EXIT); 424 424 425 ps Type* psType1 = (psType*)in1;426 ps Type* psType2 = (psType*)in2;425 psMathType* psType1 = (psMathType*)in1; 426 psMathType* psType2 = (psMathType*)in2; 427 427 psDimen dim1 = psType1->dimen; 428 428 psDimen dim2 = psType2->dimen; … … 451 451 452 452 if (dim1 == PS_DIMEN_SCALAR) { 453 if ( out != NULL && ((ps Type*)out)->dimen != dim2) {453 if ( out != NULL && ((psMathType*)out)->dimen != dim2) { 454 454 if (out != in1 && out != in2) { 455 455 psFree(out);
Note:
See TracChangeset
for help on using the changeset viewer.
