Index: trunk/psLib/src/collections/psVector.h
===================================================================
--- trunk/psLib/src/collections/psVector.h	(revision 3025)
+++ trunk/psLib/src/collections/psVector.h	(revision 3115)
@@ -11,6 +11,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-01-17 20:58:21 $
+ *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-03 00:54:10 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -84,6 +84,6 @@
  */
 psVector* psVectorRealloc(
-    psVector* restrict psVec,          ///< Vector to reallocate.
-    psU32 nalloc                ///< Total number of elements to make available.
+    psVector* psVec,                   ///< Vector to reallocate.
+    psU32 nalloc                       ///< Total number of elements to make available.
 );
 
@@ -98,9 +98,9 @@
  */
 psVector* psVectorRecycle(
-    psVector* restrict psVec,
+    psVector* psVec,
     ///< Vector to recycle.  If NULL, a new vector is created.  No effort
     ///< taken to preserve the values.
 
-    psU32 nalloc,               ///< Total number of elements to make available.
+    psU32 nalloc,                      ///< Total number of elements to make available.
     psElemType type                    ///< the datatype of the returned vector
 );
@@ -128,6 +128,6 @@
  */
 psVector* psVectorSort(
-    psVector* restrict outVector,      ///< the output vector to recycle, or NULL if new vector desired.
-    const psVector* restrict inVector  ///< the vector to sort.
+    psVector* outVector,               ///< the output vector to recycle, or NULL if new vector desired.
+    const psVector* inVector           ///< the vector to sort.
 );
 
@@ -140,6 +140,6 @@
  */
 psVector* psVectorSortIndex(
-    psVector* restrict outVector,      ///< vector to recycle
-    const psVector* restrict inVector  ///< vector to sort
+    psVector* outVector,               ///< vector to recycle
+    const psVector* inVector           ///< vector to sort
 );
 
