yapf/fixedsizearray.hpp
changeset 5081 fe3a6da19d9f
parent 4988 879ba90441d1
child 5082 d7719dfaa7e1
--- a/yapf/fixedsizearray.hpp	Tue Nov 14 01:08:20 2006 +0000
+++ b/yapf/fixedsizearray.hpp	Tue Nov 14 11:01:59 2006 +0000
@@ -24,9 +24,9 @@
 	// make types and constants visible from outside
 	typedef Titem_ Titem; // type of array item
 
-	ST_CONST(int, Tcapacity = Tcapacity_); // the array capacity (maximum size)
-	ST_CONST(int, TitemSize = sizeof(Titem_)); // size of item
-	ST_CONST(int, ThdrSize  = sizeof(CHdr)); // size of header
+	ST_CONST(int, Tcapacity = Tcapacity_) // the array capacity (maximum size)
+	ST_CONST(int, TitemSize = sizeof(Titem_)) // size of item
+	ST_CONST(int, ThdrSize  = sizeof(CHdr)) // size of header
 
 	/** Default constructor. Preallocate space for items and header, then initialize header. */
 	CFixedSizeArrayT()