summaryrefslogtreecommitdiff
path: root/ACE/apps/JAWS3/jaws3/Event_Result.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/apps/JAWS3/jaws3/Event_Result.h')
-rw-r--r--ACE/apps/JAWS3/jaws3/Event_Result.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/apps/JAWS3/jaws3/Event_Result.h b/ACE/apps/JAWS3/jaws3/Event_Result.h
index 875d3366c1c..c2a20d68a29 100644
--- a/ACE/apps/JAWS3/jaws3/Event_Result.h
+++ b/ACE/apps/JAWS3/jaws3/Event_Result.h
@@ -77,14 +77,14 @@ public:
this->error_number_ = errno;
}
- size_t bytes (void) const { return this->bytes_; }
+ size_t bytes () const { return this->bytes_; }
- int status (void) const { return this->status_; }
- int reason (void) const { return this->reason_; }
+ int status () const { return this->status_; }
+ int reason () const { return this->reason_; }
- int error_number (void) const { return (errno = this->error_number_); }
+ int error_number () const { return (errno = this->error_number_); }
- void * data (void) const { return this->data_; }
+ void * data () const { return this->data_; }
private: