summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@users.noreply.github.com>2017-01-13 09:38:35 +0100
committerGitHub <noreply@github.com>2017-01-13 09:38:35 +0100
commit3e241cdd1a6a673e2e9a3856e3e09c40879a43ab (patch)
tree2d171c2aa54a13fa034bcaf2a25374e198d42fe0
parent1c63802cec8e2f909c1a09373eb48b05afd1444d (diff)
parent1c3b168d59245c255477d2166480acc8100cf0a3 (diff)
downloadATCD-3e241cdd1a6a673e2e9a3856e3e09c40879a43ab.tar.gz
Merge pull request #356 from jwillemsen/jwi-deprecatedanyop
Make var/ptr usage as it was
-rw-r--r--TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Request_Context_Repository.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Request_Context_Repository.cpp b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Request_Context_Repository.cpp
index 3582e1ce195..29abc223232 100644
--- a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Request_Context_Repository.cpp
+++ b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Request_Context_Repository.cpp
@@ -73,7 +73,7 @@ get_object_id(CORBA::Any_var a)
FtRtecEventChannelAdmin::ObjectId(*object_id),
CORBA::NO_MEMORY());
- FtRtecEventChannelAdmin::ObjectId_var result = *r;
+ FtRtecEventChannelAdmin::ObjectId_var result = r;
return result;
}