1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-25 23:49:09 +00:00

(svn r7145) Remove extra semicolons

This commit is contained in:
tron
2006-11-14 11:01:59 +00:00
parent 2b034d9b5b
commit 55d6c98f89
8 changed files with 17 additions and 17 deletions

View File

@@ -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()