diff options
Diffstat (limited to 'cpp/include/Ice/RequestHandlerF.h')
-rw-r--r-- | cpp/include/Ice/RequestHandlerF.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/include/Ice/RequestHandlerF.h b/cpp/include/Ice/RequestHandlerF.h index f5e47f3c1c7..c4deca41076 100644 --- a/cpp/include/Ice/RequestHandlerF.h +++ b/cpp/include/Ice/RequestHandlerF.h @@ -20,8 +20,8 @@ class CancellationHandler; class RequestHandler; #ifdef ICE_CPP11_MAPPING -typedef ::std::shared_ptr<CancellationHandler> CancellationHandlerPtr; -typedef ::std::shared_ptr<RequestHandler> RequestHandlerPtr; +using CancellationHandlerPtr = ::std::shared_ptr<CancellationHandler>; +using RequestHandlerPtr = ::std::shared_ptr<RequestHandler>; #else ICE_API IceUtil::Shared* upCast(CancellationHandler*); typedef IceInternal::Handle<CancellationHandler> CancellationHandlerPtr; |