summaryrefslogtreecommitdiff
path: root/yapf/fixedsizearray.hpp
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-11-14 11:01:59 +0000
committertron <tron@openttd.org>2006-11-14 11:01:59 +0000
commit55d6c98f891f219c3118baa5fef6ea05ebe79800 (patch)
tree03b72d44c645f872c19a8938d8f5d5cc45fade6e /yapf/fixedsizearray.hpp
parent2b034d9b5b1dab9d504840a975ec14f0fb54123a (diff)
downloadopenttd-55d6c98f891f219c3118baa5fef6ea05ebe79800.tar.xz
(svn r7145) Remove extra semicolons
Diffstat (limited to 'yapf/fixedsizearray.hpp')
-rw-r--r--yapf/fixedsizearray.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/yapf/fixedsizearray.hpp b/yapf/fixedsizearray.hpp
index 4ecedcd2f..e81b6a258 100644
--- a/yapf/fixedsizearray.hpp
+++ b/yapf/fixedsizearray.hpp
@@ -24,9 +24,9 @@ struct CFixedSizeArrayT {
// 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()