Index: trunk/psLib/src/sysUtils/psType.h
===================================================================
--- trunk/psLib/src/sysUtils/psType.h	(revision 3585)
+++ trunk/psLib/src/sysUtils/psType.h	(revision 3671)
@@ -10,6 +10,6 @@
 *  @author Ross Harman, MHPCC
 *
-*  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-03-07 20:58:50 $
+*  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-04-06 01:12:58 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -83,6 +83,5 @@
     PS_TYPE_C32  = 0x0808,             ///< Complex numbers consisting of single-precision floating point.
     PS_TYPE_C64  = 0x0810,             ///< Complex numbers consisting of double-precision floating point.
-    PS_TYPE_BOOL = 0x1301,             ///< Boolean.
-    PS_TYPE_PTR  = 0x0000              ///< Something else that's not supported for arithmetic.
+    PS_TYPE_BOOL = 0x1301              ///< Boolean.
 } psElemType;
 
@@ -133,5 +132,4 @@
 #define PS_TYPE_C32_NAME  "psC32"
 #define PS_TYPE_C64_NAME  "psC64"
-#define PS_TYPE_PTR_NAME  "psPtr"
 
 #define PS_TYPE_NAME(value,type) \
@@ -175,7 +173,4 @@
 case PS_TYPE_C64: \
     value = PS_TYPE_C64_NAME; \
-    break; \
-case PS_TYPE_PTR: \
-    value = PS_TYPE_PTR_NAME; \
     break; \
 default: \
@@ -206,5 +201,5 @@
 #define PS_IS_PSELEMTYPE_BOOL(x) ((x & 0x1000) == 0x1000)
 /// Macro to determine the storage size, in bytes, of the psElemType.
-#define PSELEMTYPE_SIZEOF(x) ( (x==(PS_TYPE_PTR&0xFFFF)) ? sizeof(psPtr) :(x & 0xFF) )
+#define PSELEMTYPE_SIZEOF(x) (x & 0xFF)
 
 /** Dimensions of a data type.
