summaryrefslogtreecommitdiff
path: root/ACE/ace/Hashable.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Hashable.h')
-rw-r--r--ACE/ace/Hashable.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/Hashable.h b/ACE/ace/Hashable.h
index ee636b55248..d8db181c588 100644
--- a/ACE/ace/Hashable.h
+++ b/ACE/ace/Hashable.h
@@ -30,19 +30,19 @@ class ACE_Export ACE_Hashable
{
public:
/// Destructor.
- virtual ~ACE_Hashable (void);
+ virtual ~ACE_Hashable ();
/// Computes and returns hash value. This "caches" the hash value to
/// improve performance.
- virtual unsigned long hash (void) const;
+ virtual unsigned long hash () const;
protected:
/// Protected constructor.
- ACE_Hashable (void);
+ ACE_Hashable ();
/// This is the method that actually performs the non-cached hash
/// computation.
- virtual unsigned long hash_i (void) const = 0;
+ virtual unsigned long hash_i () const = 0;
protected:
/// Pre-computed hash-value.