diff options
author | Dwight <dmerriman@gmail.com> | 2008-01-27 14:51:47 -0500 |
---|---|---|
committer | Dwight <dmerriman@gmail.com> | 2008-01-27 14:51:47 -0500 |
commit | eef739da55fbab471e5adc76c1c7d5af0409499c (patch) | |
tree | 851e433e2643608a0b4534865422a32f366d9652 /util | |
parent | 9e1d56bdd0c45deede6f1aeddfe40ee7817b50cb (diff) | |
download | mongo-eef739da55fbab471e5adc76c1c7d5af0409499c.tar.gz |
gt lt index support
Diffstat (limited to 'util')
-rw-r--r-- | util/hashtab.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util/hashtab.h b/util/hashtab.h index 3a9e5ff801a..0f0461072a6 100644 --- a/util/hashtab.h +++ b/util/hashtab.h @@ -70,7 +70,8 @@ public: assert(nodes[n-1].hash == 0);
assert(nodes[0].hash == 0);
- cout << "HashTable() " << _name << " sizeof(node):" << sizeof(Node) << " n:" << n << endl;
+ assert( sizeof(Node) == 628 );
+ //cout << "HashTable() " << _name << " sizeof(node):" << sizeof(Node) << " n:" << n << endl;
}
Type* get(const Key& k) {
|