summaryrefslogtreecommitdiff
path: root/ACE/ace/Token_Collection.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:52:29 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:52:29 +0100
commit104d9f8a30c479fe661883b295f120ab035645d9 (patch)
treeaa39aaa576d8ce2e1666df7a750d77df1a33232e /ACE/ace/Token_Collection.h
parent2d22ad2099d46d44fa05778313a8d4c9c4a4eba3 (diff)
downloadATCD-104d9f8a30c479fe661883b295f120ab035645d9.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/ace/Token_Collection.h')
-rw-r--r--ACE/ace/Token_Collection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Token_Collection.h b/ACE/ace/Token_Collection.h
index 401cb4b23e8..3323aad0031 100644
--- a/ACE/ace/Token_Collection.h
+++ b/ACE/ace/Token_Collection.h
@@ -190,7 +190,7 @@ public:
/// Return the name of the collection. Not very functionally
/// important, but sometimes a useful debugging tool.
- virtual const ACE_TCHAR *name (void) const;
+ virtual const ACE_TCHAR *name () const;
protected:
@@ -211,7 +211,7 @@ protected:
// = I'm not sure what these mean, but they have to be defined since they're
// pure virtual in ACE_Token_Proxy.
- virtual ACE_Token_Proxy *clone (void) const;
+ virtual ACE_Token_Proxy *clone () const;
virtual ACE_Tokens *create_token (const ACE_TCHAR *name);
};