diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-07-20 14:45:12 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-07-20 14:45:12 +0000 |
commit | 55ea82dd59dba53ec1d7c449207f221280a5946e (patch) | |
tree | b25ace21aed6ce0fa10b25c25901ffa221d9fda2 | |
parent | d3cbcabf89f63c9f1c17e0d8697474cd330b58d5 (diff) | |
download | ATCD-55ea82dd59dba53ec1d7c449207f221280a5946e.tar.gz |
Fixed unused variable warnings.
-rw-r--r-- | ace/Future_Set.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/ace/Future_Set.cpp b/ace/Future_Set.cpp index 55cdd222632..2ffa7a0739c 100644 --- a/ace/Future_Set.cpp +++ b/ace/Future_Set.cpp @@ -103,13 +103,14 @@ ACE_Future_Set<T>::next_readable (ACE_Future<T> &future, if (this->is_empty ()) return 0; - ACE_Message_Block *mb; + ACE_Message_Block *mb = 0; FUTURE_REP *future_rep = 0; - int isd = - this->future_notification_queue_->deactivated (); - int ise = - this->future_notification_queue_->is_empty (); + // These variables are currently unused. + // int isd = + // this->future_notification_queue_->deactivated (); + // int ise = + // this->future_notification_queue_->is_empty (); // Wait for a "readable future" signal from the message queue. if (this->future_notification_queue_->dequeue_head (mb, |