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/blob.hpp | |
parent | 50305fb2538cd5548310fbb048c962ef0737ec30 (diff) | |
download | openttd-a0b44e744f66ba26f5a96b13347028308041ace7.tar.xz |
(svn r7145) Remove extra semicolons
Diffstat (limited to 'yapf/blob.hpp')
-rw-r--r-- | yapf/blob.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yapf/blob.hpp b/yapf/blob.hpp index 8c2da84a4..53e7e1ff5 100644 --- a/yapf/blob.hpp +++ b/yapf/blob.hpp @@ -32,7 +32,7 @@ protected: } ptr_u; public: - ST_CONST(int, Ttail_reserve = 4); // four extra bytes will be always allocated and zeroed at the end + ST_CONST(int, Ttail_reserve = 4) // four extra bytes will be always allocated and zeroed at the end FORCEINLINE CBlobBaseSimple() { InitEmpty(); } FORCEINLINE CBlobBaseSimple(const CBlobBaseSimple& src) @@ -169,7 +169,7 @@ public: typedef Titem_ Titem; typedef Tbase_ Tbase; - ST_CONST(int, Titem_size = sizeof(Titem)); + ST_CONST(int, Titem_size = sizeof(Titem)) FORCEINLINE CBlobT() : Tbase() {} FORCEINLINE CBlobT(const Tbase& src) : Tbase(src) {assert((RawSize() % Titem_size) == 0);} |