Changeset 836
- Timestamp:
- Jun 2, 2004, 2:32:32 PM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 4 edited
-
collections/psBitSet.c (modified) (3 diffs)
-
collections/psVector.h (modified) (2 diffs)
-
mathtypes/psVector.h (modified) (2 diffs)
-
types/psBitSet.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psBitSet.c
r614 r836 10 10 * @author Ross Harman, MHPCC 11 11 * 12 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-0 5-08 00:08:27$12 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-06-03 00:32:32 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 185 185 inBits2 = inBitSet2->bits; 186 186 187 tempChar = toupper( *operator);187 tempChar = toupper(operator[0]); 188 188 switch(tempChar) { 189 189 case 'A': … … 203 203 break; 204 204 default: 205 psError(__func__, " : Line %d - Invalid psBitMask binary operation: %s\n", __LINE__ );205 psError(__func__, " : Line %d - Invalid psBitMask binary operation: %s\n", __LINE__, operator); 206 206 } 207 207 -
trunk/psLib/src/collections/psVector.h
r831 r836 9 9 * @author Ross Harman, MHPCC 10 10 * 11 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-06-0 2 23:29:14$11 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-06-03 00:32:32 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 44 44 psC32 *C32; ///< Single-precision complex data. 45 45 psC64 *C64; ///< Double-precision complex data. 46 psPTR *PTR; ///< Void pointers 47 psPTR V; ///< Pointer to data 46 psPTR *PTR; ///< Void pointers. 47 psPTR V; ///< Pointer to data. 48 48 } data; ///< Union for data types. 49 49 } -
trunk/psLib/src/mathtypes/psVector.h
r831 r836 9 9 * @author Ross Harman, MHPCC 10 10 * 11 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-06-0 2 23:29:14$11 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-06-03 00:32:32 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 44 44 psC32 *C32; ///< Single-precision complex data. 45 45 psC64 *C64; ///< Double-precision complex data. 46 psPTR *PTR; ///< Void pointers 47 psPTR V; ///< Pointer to data 46 psPTR *PTR; ///< Void pointers. 47 psPTR V; ///< Pointer to data. 48 48 } data; ///< Union for data types. 49 49 } -
trunk/psLib/src/types/psBitSet.c
r614 r836 10 10 * @author Ross Harman, MHPCC 11 11 * 12 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-0 5-08 00:08:27$12 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-06-03 00:32:32 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 185 185 inBits2 = inBitSet2->bits; 186 186 187 tempChar = toupper( *operator);187 tempChar = toupper(operator[0]); 188 188 switch(tempChar) { 189 189 case 'A': … … 203 203 break; 204 204 default: 205 psError(__func__, " : Line %d - Invalid psBitMask binary operation: %s\n", __LINE__ );205 psError(__func__, " : Line %d - Invalid psBitMask binary operation: %s\n", __LINE__, operator); 206 206 } 207 207
Note:
See TracChangeset
for help on using the changeset viewer.
