summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2016-03-29 15:06:23 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2016-03-29 15:06:23 +0200
commit0323379fae2eb5ffb6626d6abb18e05c2543dcb6 (patch)
tree28ce5f72a47e9fbf7db1f8d94b5c797a4b374024 /TAO
parent3867298806327218ed7243041961716749da29bd (diff)
downloadATCD-0323379fae2eb5ffb6626d6abb18e05c2543dcb6.tar.gz
Const fix
* TAO/orbsvcs/ImplRepo_Service/LiveCheck.cpp:
Diffstat (limited to 'TAO')
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/LiveCheck.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/orbsvcs/ImplRepo_Service/LiveCheck.cpp b/TAO/orbsvcs/ImplRepo_Service/LiveCheck.cpp
index fbc83cc92b9..d7b77c2f8bd 100644
--- a/TAO/orbsvcs/ImplRepo_Service/LiveCheck.cpp
+++ b/TAO/orbsvcs/ImplRepo_Service/LiveCheck.cpp
@@ -253,7 +253,7 @@ LiveEntry::update_listeners (void)
i.advance ())
{
LiveListener_ptr llp (*i);
- int result = this->listeners_.remove (llp);
+ int const result = this->listeners_.remove (llp);
if (result == -1)
{
}