summaryrefslogtreecommitdiff
path: root/ACE/apps/gperf/src/Gen_Perf.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/apps/gperf/src/Gen_Perf.h')
-rw-r--r--ACE/apps/gperf/src/Gen_Perf.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/apps/gperf/src/Gen_Perf.h b/ACE/apps/gperf/src/Gen_Perf.h
index c52e1bb2263..c0ab6455928 100644
--- a/ACE/apps/gperf/src/Gen_Perf.h
+++ b/ACE/apps/gperf/src/Gen_Perf.h
@@ -37,21 +37,21 @@ class Gen_Perf : private ACE_Copy_Disabled
{
public:
/// Constructor.
- Gen_Perf (void);
+ Gen_Perf ();
/// Destructor
- ~Gen_Perf (void);
+ ~Gen_Perf ();
/// Attempt to generate a perfect hash function.
- int run (void);
+ int run ();
private:
- int open (void);
+ int open ();
int change (List_Node *prior, List_Node *curr);
int affects_prev (char c, List_Node *curr);
- int compute_perfect_hash (void);
- int compute_binary_search (void);
- int compute_linear_search (void);
+ int compute_perfect_hash ();
+ int compute_binary_search ();
+ int compute_linear_search ();
static int hash (List_Node *key_node);
static int compute_disjoint_union (char *s1, char *s2, char *s3);
static void sort_set (char *union_set, int len);