summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-19 23:22:24 +0000
committerjxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-19 23:22:24 +0000
commit1ed36888b9e8d83c60baca8af28ef1914ea9d52c (patch)
treeb4367e7de4acbbe8718f9843884b03935c09e66d
parentc78d93788603459c5b52db7e8e3a99f45c9d956b (diff)
downloadATCD-1ed36888b9e8d83c60baca8af28ef1914ea9d52c.tar.gz
Meaningless typ qualifier (const ...) removed.
-rw-r--r--TAO/tests/Cubit/TAO/IDL_Cubit/clnt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/Cubit/TAO/IDL_Cubit/clnt.cpp b/TAO/tests/Cubit/TAO/IDL_Cubit/clnt.cpp
index 901d427047b..e2e5a6a98f6 100644
--- a/TAO/tests/Cubit/TAO/IDL_Cubit/clnt.cpp
+++ b/TAO/tests/Cubit/TAO/IDL_Cubit/clnt.cpp
@@ -176,7 +176,7 @@ Cubit_Client::cube_union_dii (void)
this->call_count_++;
- req = this->cubit_->_request ((const CORBA::String) "cube_union", this->env_);
+ req = this->cubit_->_request ((CORBA::String) "cube_union", this->env_);
if (this->env_.exception () != 0)
{
@@ -385,7 +385,7 @@ Cubit_Client::cube_struct_dii (void)
{
// Create the request ...
CORBA::Request_ptr req =
- this->cubit_->_request ((const CORBA::String) "cube_struct", this->env_);
+ this->cubit_->_request ((CORBA::String) "cube_struct", this->env_);
this->call_count_++;