diff options
Diffstat (limited to 'cpp/src/Ice/ObserverHelper.cpp')
-rw-r--r-- | cpp/src/Ice/ObserverHelper.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/Ice/ObserverHelper.cpp b/cpp/src/Ice/ObserverHelper.cpp index 70f796e9bc9..f4e128ff652 100644 --- a/cpp/src/Ice/ObserverHelper.cpp +++ b/cpp/src/Ice/ObserverHelper.cpp @@ -38,11 +38,13 @@ InvocationObserver::attach(IceProxy::Ice::Object* proxy, const string& operation { if(context) { - ObserverHelperT::attach(obsv->getInvocationObserverWithContext(proxy, operation, *context)); + ObserverHelperT<Ice::Instrumentation::InvocationObserver>::attach( + obsv->getInvocationObserverWithContext(proxy, operation, *context)); } else { - ObserverHelperT::attach(obsv->getInvocationObserver(proxy, operation)); + ObserverHelperT<Ice::Instrumentation::InvocationObserver>::attach( + obsv->getInvocationObserver(proxy, operation)); } } } |