diff options
Diffstat (limited to 'ACE/ace/IO_Cntl_Msg.h')
-rw-r--r-- | ACE/ace/IO_Cntl_Msg.h | 10 |
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; |