diff options
author | tron <tron@openttd.org> | 2006-11-14 11:01:59 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2006-11-14 11:01:59 +0000 |
commit | a0b44e744f66ba26f5a96b13347028308041ace7 (patch) | |
tree | 03b72d44c645f872c19a8938d8f5d5cc45fade6e /yapf/array.hpp | |
parent | 50305fb2538cd5548310fbb048c962ef0737ec30 (diff) | |
download | openttd-a0b44e744f66ba26f5a96b13347028308041ace7.tar.xz |
(svn r7145) Remove extra semicolons
Diffstat (limited to 'yapf/array.hpp')
-rw-r--r-- | yapf/array.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yapf/array.hpp b/yapf/array.hpp index 0d330aeed..04fbe0983 100644 --- a/yapf/array.hpp +++ b/yapf/array.hpp @@ -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() { } |