summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsbw1 <sbw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-10 23:12:32 +0000
committersbw1 <sbw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-10 23:12:32 +0000
commit58e43a8728987237d5eb015d46dd111cffdeb3a9 (patch)
tree311c74eb925c92bd6d2afc6fbe49fa5c1f185561
parente854133c8008dbf8712b5b00056b59d7dd4d93b7 (diff)
downloadATCD-58e43a8728987237d5eb015d46dd111cffdeb3a9.tar.gz
Fixed NT warnings
-rw-r--r--TAO/orbsvcs/orbsvcs/Trader/Trader_Utils.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Trader/Trader_Utils.cpp b/TAO/orbsvcs/orbsvcs/Trader/Trader_Utils.cpp
index 234e1c96c7a..9307684011d 100644
--- a/TAO/orbsvcs/orbsvcs/Trader/Trader_Utils.cpp
+++ b/TAO/orbsvcs/orbsvcs/Trader/Trader_Utils.cpp
@@ -194,7 +194,7 @@ TAO_Property_Evaluator(const CosTrading::PropertySeq& props,
{
if (this->dp_cache_ != 0)
{
- for (int i = 0; i < this->props_.length (); i++)
+ for (CORBA::ULong i = 0; i < this->props_.length (); i++)
this->dp_cache_[i] = 0;
}
}
@@ -209,7 +209,7 @@ TAO_Property_Evaluator(CosTrading::Offer& offer,
{
if (this->dp_cache_ != 0)
{
- for (int i = 0; i < this->props_.length (); i++)
+ for (CORBA::ULong i = 0; i < this->props_.length (); i++)
this->dp_cache_[i] = 0;
}
}
@@ -217,7 +217,7 @@ TAO_Property_Evaluator(CosTrading::Offer& offer,
TAO_Property_Evaluator::~TAO_Property_Evaluator (void)
{
// Clean up the results of any dynamic properties.
- for (int i = 0; i < this->props_.length (); i++)
+ for (CORBA::ULong i = 0; i < this->props_.length (); i++)
{
if (this->dp_cache_[i] != 0)
delete this->dp_cache_[i];
@@ -1325,7 +1325,7 @@ TAO_Property_Filter::filter_offer (CosTrading::Offer& source,
destination.reference = source.reference->_duplicate (source.reference);
if (this->policy_ == CosTrading::Lookup::some)
{
- for (int i = 0; i < length; i++)
+ for (CORBA::ULong i = 0; i < length; i++)
{
if (this->policy_ == CosTrading::Lookup::all)
prop_queue.enqueue_tail (&s_props[i]);