summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-08-23 13:11:51 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-08-23 13:11:51 +0000
commita66b693bdc1e80f6d2b521babd82e95142edd3a1 (patch)
treea5a27ab390eb643f5b7818ce5784e4a19093419d
parentcdf616271e1bd65f1d8977cde7bb83ee92a606cd (diff)
downloadATCD-a66b693bdc1e80f6d2b521babd82e95142edd3a1.tar.gz
ChangeLogTag: Tue Aug 23 12:52:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--TAO/tao/Abstract_Servant_Base.h4
-rw-r--r--TAO/tao/PortableServer/Servant_Base.cpp4
-rw-r--r--TAO/tao/PortableServer/Servant_Base.h4
3 files changed, 6 insertions, 6 deletions
diff --git a/TAO/tao/Abstract_Servant_Base.h b/TAO/tao/Abstract_Servant_Base.h
index f8d7c95d18c..3ff31187f77 100644
--- a/TAO/tao/Abstract_Servant_Base.h
+++ b/TAO/tao/Abstract_Servant_Base.h
@@ -127,7 +127,7 @@ public:
/// TAO_Skeleton which can be used to make upcalls
virtual int _find (const char *opname,
TAO_Skeleton &skelfunc,
- const unsigned int length = 0) = 0;
+ const size_t length = 0) = 0;
/// Find an operation in the operation table and return a
/// TAO_Collocated_Skeleton which can be used to make upcalls onto
@@ -135,7 +135,7 @@ public:
virtual int _find (const char *opname,
TAO_Collocated_Skeleton &skelfunc,
TAO::Collocation_Strategy s,
- const unsigned int length = 0) = 0;
+ const size_t length = 0) = 0;
protected:
diff --git a/TAO/tao/PortableServer/Servant_Base.cpp b/TAO/tao/PortableServer/Servant_Base.cpp
index 1959e73cbef..0ea81d9f901 100644
--- a/TAO/tao/PortableServer/Servant_Base.cpp
+++ b/TAO/tao/PortableServer/Servant_Base.cpp
@@ -130,7 +130,7 @@ TAO_ServantBase::_repository_id (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
int
TAO_ServantBase::_find (const char *opname,
TAO_Skeleton& skelfunc,
- const unsigned int length)
+ const size_t length)
{
ACE_FUNCTION_TIMEPROBE (TAO_SERVANT_BASE_FIND_START);
return this->optable_->find (opname, skelfunc, length);
@@ -140,7 +140,7 @@ int
TAO_ServantBase::_find (const char *opname,
TAO_Collocated_Skeleton& skelfunc,
TAO::Collocation_Strategy st,
- const unsigned int length)
+ const size_t length)
{
ACE_FUNCTION_TIMEPROBE (TAO_SERVANT_BASE_FIND_START);
return this->optable_->find (opname, skelfunc, st, length);
diff --git a/TAO/tao/PortableServer/Servant_Base.h b/TAO/tao/PortableServer/Servant_Base.h
index e0ded5cd97d..1edd4812af9 100644
--- a/TAO/tao/PortableServer/Servant_Base.h
+++ b/TAO/tao/PortableServer/Servant_Base.h
@@ -110,12 +110,12 @@ public:
/// details.
virtual int _find (const char *opname,
TAO_Skeleton &skelfunc,
- const unsigned int length = 0);
+ const size_t length = 0);
virtual int _find (const char *opname,
TAO_Collocated_Skeleton &skelfunc,
TAO::Collocation_Strategy st,
- const unsigned int length = 0);
+ const size_t length = 0);
/// Get this interface's repository id (TAO specific).
virtual const char *_interface_repository_id (void) const = 0;