summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2005-01-14 08:05:40 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2005-01-14 08:05:40 +0000
commita214744c8c345e0c076ba53f6ec9f6a11b3c9cae (patch)
tree1b09ff0a937500f4067c521bd2b9427f475cf482
parent8e3bec115978b1005a081cde27b774bc02ad9389 (diff)
downloadATCD-a214744c8c345e0c076ba53f6ec9f6a11b3c9cae.tar.gz
*** empty log message ***
-rw-r--r--TAO/tao/PortableServer/Servant_Base.cpp2
-rw-r--r--TAO/tao/PortableServer/Servant_Base.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/PortableServer/Servant_Base.cpp b/TAO/tao/PortableServer/Servant_Base.cpp
index 5ef88e5029e..e7a7373a9b2 100644
--- a/TAO/tao/PortableServer/Servant_Base.cpp
+++ b/TAO/tao/PortableServer/Servant_Base.cpp
@@ -45,7 +45,7 @@ ACE_TIMEPROBE_EVENT_DESCRIPTIONS (TAO_Servant_Base_Timeprobe_Description,
#endif /* ACE_ENABLE_TIMEPROBES */
-TAO_ServantBase::TAO_ServantBase (TAO_Operation_Table const * optable)
+TAO_ServantBase::TAO_ServantBase (TAO_Operation_Table * optable)
: TAO_Abstract_ServantBase ()
, optable_ (optable)
{
diff --git a/TAO/tao/PortableServer/Servant_Base.h b/TAO/tao/PortableServer/Servant_Base.h
index e5d5087413a..607ee1b389f 100644
--- a/TAO/tao/PortableServer/Servant_Base.h
+++ b/TAO/tao/PortableServer/Servant_Base.h
@@ -106,7 +106,7 @@ public:
protected:
/// Default constructor, only derived classes can be created.
- TAO_ServantBase (TAO_Operation_Table const * optable = 0);
+ TAO_ServantBase (TAO_Operation_Table * optable = 0);
/// Copy constructor, protected so no instances can be created.
TAO_ServantBase (const TAO_ServantBase &);
@@ -136,7 +136,7 @@ protected:
/// The operation table for this servant. It is initialized by the
/// most derived class.
- TAO_Operation_Table const * const optable_;
+ TAO_Operation_Table * optable_;
};