1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-12 09:09: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

@@ -18,9 +18,9 @@ protected:
CSuperArray m_a; ///< array of arrays of items
public:
ST_CONST(int, Tblock_size = Tblock_size_); ///< block size is now visible from outside
ST_CONST(int, Tnum_blocks = Tnum_blocks_); ///< number of blocks is now visible from outside
ST_CONST(int, Tcapacity = Tblock_size * Tnum_blocks); ///< total max number of items
ST_CONST(int, Tblock_size = Tblock_size_) ///< block size is now visible from outside
ST_CONST(int, Tnum_blocks = Tnum_blocks_) ///< number of blocks is now visible from outside
ST_CONST(int, Tcapacity = Tblock_size * Tnum_blocks) ///< total max number of items
/** implicit constructor */
FORCEINLINE CArrayT() { }