Index: src/tests/vector/array.h
===================================================================
--- src/tests/vector/array.h	(revision 4a9ccc35f7b5fed64bf53eee245fc9caa37f687d)
+++ src/tests/vector/array.h	(revision e2135603bfc33c0e2b6bf4e1ac3d24cf3ebcfd8c)
@@ -9,11 +9,10 @@
 // Author           : Richard C. Bilson
 // Created On       : Wed May 27 17:56:53 2015
-// Last Modified By : Rob Schluntz
-// Last Modified On : Wed Apr 27 17:26:04 2016
-// Update Count     : 5
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Sat Jul 22 10:04:20 2017
+// Update Count     : 6
 //
 
-#ifndef ARRAY_H
-#define ARRAY_H
+#pragma once
 
 //#include <iterator>
@@ -45,6 +44,4 @@
 elt_type * end( array_type * array );
 
-#endif // ARRAY_H
-
 // Local Variables: //
 // tab-width: 4 //
Index: src/tests/vector/vector_int.h
===================================================================
--- src/tests/vector/vector_int.h	(revision 4a9ccc35f7b5fed64bf53eee245fc9caa37f687d)
+++ src/tests/vector/vector_int.h	(revision e2135603bfc33c0e2b6bf4e1ac3d24cf3ebcfd8c)
@@ -9,11 +9,10 @@
 // Author           : Richard C. Bilson
 // Created On       : Wed May 27 17:56:53 2015
-// Last Modified By : Rob Schluntz
-// Last Modified On : Wed Apr 27 17:26:59 2016
-// Update Count     : 2
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Sat Jul 22 10:04:02 2017
+// Update Count     : 4
 //
 
-#ifndef VECTOR_INT_H
-#define VECTOR_INT_H
+#pragma once
 
 // A flexible array, similar to a C++ vector, that holds integers and can be resized dynamically
@@ -26,6 +25,6 @@
 
 void ?{}( vector_int * );								// allocate vector with default capacity
-void ?{}( vector_int *, int reserve );          // allocate vector with specified capacity
-void ?{}( vector_int * vec, vector_int other ); // copy constructor
+void ?{}( vector_int *, int reserve );					// allocate vector with specified capacity
+void ?{}( vector_int * vec, vector_int other );			// copy constructor
 void ^?{}( vector_int * );								// deallocate vector's storage
 
@@ -36,7 +35,5 @@
 
 lvalue int ?[?]( vector_int * vec, int index );			// access to arbitrary element (does not resize)
-int last( vector_int * vec );								// return last element
-
-#endif // VECTOR_INT_H
+int last( vector_int * vec );							// return last element
 
 // Local Variables: //
