summaryrefslogtreecommitdiff
path: root/ACE/apps/drwho/Search_Struct.h
diff options
context:
space:
mode:
authorKnut Petter Svendsen <knut@altuma.no>2022-09-13 22:57:39 +0200
committerKnut Petter Svendsen <knut@altuma.no>2022-09-13 22:57:39 +0200
commit3da59eac098c1ef9d2c98f2079185ff35c3b6105 (patch)
tree379c29e09bf55597fe6740cd163478cd1204a181 /ACE/apps/drwho/Search_Struct.h
parentfe03724176dcfd20e0f9a6e493198469242be6b6 (diff)
downloadATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'ACE/apps/drwho/Search_Struct.h')
-rw-r--r--ACE/apps/drwho/Search_Struct.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/apps/drwho/Search_Struct.h b/ACE/apps/drwho/Search_Struct.h
index ff39c6bcc65..c8762f70daf 100644
--- a/ACE/apps/drwho/Search_Struct.h
+++ b/ACE/apps/drwho/Search_Struct.h
@@ -23,9 +23,9 @@
class Search_Struct
{
public:
- Search_Struct (void);
- virtual ~Search_Struct (void);
- virtual int n_elems (void);
+ Search_Struct ();
+ virtual ~Search_Struct ();
+ virtual int n_elems ();
virtual Protocol_Record *insert (const char *key_name,
int max_len = MAXUSERIDNAMELEN) = 0;