Index: trunk/psLib/src/collections/psBitSet.h
===================================================================
--- trunk/psLib/src/collections/psBitSet.h	(revision 2204)
+++ trunk/psLib/src/collections/psBitSet.h	(revision 3115)
@@ -12,6 +12,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-10-27 00:57:31 $
+ *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-03 00:54:10 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -56,5 +56,5 @@
 /*@null@*/
 psBitSet* psBitSetAlloc(
-    psS32 n                              ///< Number of bits in psBitSet array
+    psS32 n                            ///< Number of bits in psBitSet array
 );
 
@@ -69,6 +69,6 @@
 psBitSet* psBitSetSet(
     /* @returned@ */
-    psBitSet* restrict inMask,         ///< Pointer to psBitSet to be set.
-    psS32 bit                            ///< Bit to be set.
+    psBitSet* inMask,                  ///< Pointer to psBitSet to be set.
+    psS32 bit                          ///< Bit to be set.
 );
 
@@ -83,6 +83,6 @@
 psBitSet* psBitSetClear(
     /* @returned@ */
-    psBitSet* restrict inMask,         ///< Pointer to psBitSet to be cleared.
-    psS32 bit                            ///< Bit to be cleared.
+    psBitSet* inMask,                  ///< Pointer to psBitSet to be cleared.
+    psS32 bit                          ///< Bit to be cleared.
 );
 
@@ -98,6 +98,6 @@
 
 psBool psBitSetTest(
-    const psBitSet* restrict inMask,   ///< Pointer psBitSet to be tested.
-    psS32 bit                            ///< Bit to be tested.
+    const psBitSet* inMask,            ///< Pointer psBitSet to be tested.
+    psS32 bit                          ///< Bit to be tested.
 );
 
@@ -111,8 +111,8 @@
 psBitSet* psBitSetOp(
     /* @returned@ */
-    psBitSet* restrict outMask,        ///< Resulting psBitSet from binary operation
-    const psBitSet* restrict inMask1,  ///< First psBitSet on which to operate
+    psBitSet* outMask,                 ///< Resulting psBitSet from binary operation
+    const psBitSet* inMask1,           ///< First psBitSet on which to operate
     char *operator,                    ///< Bit operation
-    const psBitSet* restrict inMask2   ///< First psBitSet on which to operate
+    const psBitSet* inMask2            ///< First psBitSet on which to operate
 );
 
@@ -126,5 +126,5 @@
 psBitSet* psBitSetNot(
     psBitSet* outBitSet,               ///< Resulting psBitSet from operation
-    const psBitSet* restrict inBitSet  ///< Input psBitSet
+    const psBitSet* inBitSet           ///< Input psBitSet
 );
 
@@ -138,5 +138,5 @@
 
 char *psBitSetToString(
-    const psBitSet* restrict inMask    ///< psBitSet to convert */
+    const psBitSet* inMask             ///< psBitSet to convert */
 );
 
