summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-05-07 22:11:22 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-05-07 22:11:22 +0000
commitf7d1385fe9ab3865ea358602e2f78ae77503a4f3 (patch)
tree7f9de3703a4372436b5edc48b29608f669fee548
parenta9fa39ddf24f0a400fa209dbe38be1d69dd979c8 (diff)
downloadATCD-f7d1385fe9ab3865ea358602e2f78ae77503a4f3.tar.gz
ChangeLogTag:Wed May 7 17:09:45 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--TAO/CIAO/ChangeLog6
-rw-r--r--TAO/CIAO/ciao/ComponentServer_Impl.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/TAO/CIAO/ChangeLog b/TAO/CIAO/ChangeLog
index 0b7c152bb7f..013bb95b457 100644
--- a/TAO/CIAO/ChangeLog
+++ b/TAO/CIAO/ChangeLog
@@ -1,3 +1,9 @@
+Wed May 7 17:09:45 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * ciao/ComponentServer_Impl.cpp (configuration): Used .inout ()
+ while doing a deep copy so that the right operator= on
+ TAO_Unbounded_Sequence is invoked without any warning in g++.
+
Wed May 7 16:41:42 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* ciao/ComponentServer_Impl.cpp (remove_container): Fixed warnings
diff --git a/TAO/CIAO/ciao/ComponentServer_Impl.cpp b/TAO/CIAO/ciao/ComponentServer_Impl.cpp
index e10a9ce31e0..b2bf2ae25a0 100644
--- a/TAO/CIAO/ciao/ComponentServer_Impl.cpp
+++ b/TAO/CIAO/ciao/ComponentServer_Impl.cpp
@@ -50,7 +50,7 @@ CIAO::ComponentServer_Impl::configuration (ACE_ENV_SINGLE_ARG_DECL)
CORBA::INTERNAL ());
ACE_CHECK_RETURN (0);
- *retval = this->config_;
+ *retval = this->config_.inout ();
return retval;
}