mirror of
https://git.savannah.gnu.org/git/gperf.git
synced 2025-12-02 21:19:24 +00:00
Align all member declarations.
This commit is contained in:
@@ -29,15 +29,15 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
|
||||
class Hash_Table
|
||||
{
|
||||
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;
|
||||
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;
|
||||
|
||||
public:
|
||||
Hash_Table (KeywordExt **t, int s, int ignore_len);
|
||||
~Hash_Table ();
|
||||
KeywordExt *insert (KeywordExt *item);
|
||||
Hash_Table (KeywordExt **t, int s, int ignore_len);
|
||||
~Hash_Table ();
|
||||
KeywordExt * insert (KeywordExt *item);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user