summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2002-07-23 20:22:17 +0000
committerSteve Huston <shuston@riverace.com>2002-07-23 20:22:17 +0000
commit232dfdb47d633ac52c205aa342d3dbcb9960840e (patch)
treea28ce89c3b4b6ad0998e0ad4d71b931ec8676fe2
parent21f66091399bf37a76f6479c3b24a27efa57d6ac (diff)
downloadATCD-232dfdb47d633ac52c205aa342d3dbcb9960840e.tar.gz
ChangeLogTag:Tue Jul 23 16:20:39 2002 Steve Huston <shuston@riverace.com>
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Dispatching_Task.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Dispatching_Task.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_Dispatching_Task.cpp
index cb0a9a28d24..eaafe424f32 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Dispatching_Task.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Dispatching_Task.cpp
@@ -12,7 +12,7 @@ ACE_RCSID(Event, EC_Dispatching, "$Id$")
int
TAO_EC_Queue::is_full_i (void)
{
- return this->cur_count_ > this->high_water_mark_;
+ return ACE_static_cast (size_t, this->cur_count_) > this->high_water_mark_;
}
// ****************************************************************