summaryrefslogtreecommitdiff
path: root/ACE/ace/IO_Cntl_Msg.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 13:40:11 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 13:40:11 +0100
commit900d6095f897d8c69fea522221675bdec225dbba (patch)
treec260d476fc15fc89f0733b639c11ace3a019d462 /ACE/ace/IO_Cntl_Msg.h
parent68af84b8a645ccf8f2d45ba545ec0acf84bc8335 (diff)
downloadATCD-900d6095f897d8c69fea522221675bdec225dbba.tar.gz
Remove redundant void arg
Diffstat (limited to 'ACE/ace/IO_Cntl_Msg.h')
-rw-r--r--ACE/ace/IO_Cntl_Msg.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ace/IO_Cntl_Msg.h b/ACE/ace/IO_Cntl_Msg.h
index 36c683684d7..d626fd0ef70 100644
--- a/ACE/ace/IO_Cntl_Msg.h
+++ b/ACE/ace/IO_Cntl_Msg.h
@@ -55,31 +55,31 @@ public:
// = Get/set methods
/// Get command.
- ACE_IO_Cntl_Cmds cmd (void);
+ ACE_IO_Cntl_Cmds cmd ();
/// Set command.
void cmd (ACE_IO_Cntl_Cmds c);
/// Get count.
- size_t count (void);
+ size_t count ();
/// Set count.
void count (size_t c);
/// Get error.
- int error (void);
+ int error ();
/// Set error.
void error (int e);
/// Get return value.
- int rval (void);
+ int rval ();
/// Set return value.
void rval (int r);
/// Dump the state of an object.
- void dump (void) const;
+ void dump () const;
/// Declare the dynamic allocation hooks.
ACE_ALLOC_HOOK_DECLARE;