summaryrefslogtreecommitdiff
path: root/yapf/hashtable.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
commita0b44e744f66ba26f5a96b13347028308041ace7 (patch)
tree03b72d44c645f872c19a8938d8f5d5cc45fade6e /yapf/hashtable.hpp
parent50305fb2538cd5548310fbb048c962ef0737ec30 (diff)
downloadopenttd-a0b44e744f66ba26f5a96b13347028308041ace7.tar.xz
(svn r7145) Remove extra semicolons
Diffstat (limited to 'yapf/hashtable.hpp')
-rw-r--r--yapf/hashtable.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/yapf/hashtable.hpp b/yapf/hashtable.hpp
index 3933eb8f1..44ea315e2 100644
--- a/yapf/hashtable.hpp
+++ b/yapf/hashtable.hpp
@@ -120,8 +120,8 @@ class CHashTableT {
public:
typedef Titem_ Titem; // make Titem_ visible from outside of class
typedef typename Titem_::Key Tkey; // make Titem_::Key a property of HashTable
- ST_CONST(int, Thash_bits = Thash_bits_); // publish num of hash bits
- ST_CONST(int, Tcapacity = 1 << Thash_bits); // and num of slots 2^bits
+ ST_CONST(int, Thash_bits = Thash_bits_) // publish num of hash bits
+ ST_CONST(int, Tcapacity = 1 << Thash_bits) // and num of slots 2^bits
protected:
/** each slot contains pointer to the first item in the list,