summaryrefslogtreecommitdiff
path: root/TAO/tao/Transport_Cache_Manager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Transport_Cache_Manager.cpp')
-rw-r--r--TAO/tao/Transport_Cache_Manager.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/TAO/tao/Transport_Cache_Manager.cpp b/TAO/tao/Transport_Cache_Manager.cpp
index 2ff69e5c90b..7821bdffddd 100644
--- a/TAO/tao/Transport_Cache_Manager.cpp
+++ b/TAO/tao/Transport_Cache_Manager.cpp
@@ -386,7 +386,7 @@ namespace TAO
}
// Remove the entry from the Map
- int retval = this->cache_map_.unbind (entry);
+ int const retval = this->cache_map_.unbind (entry);
// Set the entry pointer to zero
entry = 0;
@@ -425,9 +425,7 @@ namespace TAO
}
// Now do a bind again with the new index
- return this->cache_map_.bind (key,
- val,
- entry);
+ return this->cache_map_.bind (key, val, entry);
}