summaryrefslogtreecommitdiff
path: root/src/hash-table.h
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2002-11-19 12:55:48 +0000
committerBruno Haible <bruno@clisp.org>2002-11-19 12:55:48 +0000
commit2cd11405ed0a30b01789466132fec6b6605ab25a (patch)
treef1becd5a17576864b7e7fe19c2402807b0510be0 /src/hash-table.h
parent4cda19576bacc02b1ee7f6306ed5c935ac9ad828 (diff)
downloadgperf-2cd11405ed0a30b01789466132fec6b6605ab25a.tar.gz
Start using bool.
Diffstat (limited to 'src/hash-table.h')
-rw-r--r--src/hash-table.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hash-table.h b/src/hash-table.h
index 0f3a95c..0e94239 100644
--- a/src/hash-table.h
+++ b/src/hash-table.h
@@ -32,10 +32,10 @@ private:
KeywordExt ** _table; /* Vector of pointers to linked lists of keywords. */
int _size; /* Size of the vector. */
int _collisions; /* Find out how well our double hashing is working! */
- int _ignore_length;
+ bool _ignore_length;
public:
- Hash_Table (KeywordExt **t, int s, int ignore_len);
+ Hash_Table (KeywordExt **t, int s, bool ignore_len);
~Hash_Table ();
KeywordExt * insert (KeywordExt *item);
};