diff options
author | Bernard Normier <bernard@zeroc.com> | 2016-07-13 12:06:46 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2016-07-13 12:06:46 -0400 |
commit | 30004443d55d6597f9695bfcf54a6771bc296501 (patch) | |
tree | 7e79568abd26300ef974ca22c6916044af1cb569 /cpp/src/Ice/EndpointIF.h | |
parent | Fixed for 7213 - Added check for VC120 to add PATH for Bzip2 library (diff) | |
download | ice-30004443d55d6597f9695bfcf54a6771bc296501.tar.bz2 ice-30004443d55d6597f9695bfcf54a6771bc296501.tar.xz ice-30004443d55d6597f9695bfcf54a6771bc296501.zip |
Various C++ cleanups
Diffstat (limited to 'cpp/src/Ice/EndpointIF.h')
-rw-r--r-- | cpp/src/Ice/EndpointIF.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/Ice/EndpointIF.h b/cpp/src/Ice/EndpointIF.h index c3a4c767772..55449a594d4 100644 --- a/cpp/src/Ice/EndpointIF.h +++ b/cpp/src/Ice/EndpointIF.h @@ -24,11 +24,11 @@ class EndpointI_connectors; #ifdef ICE_CPP11_MAPPING // C++11 mapping -typedef ::std::shared_ptr<EndpointI> EndpointIPtr; -typedef ::std::shared_ptr<TcpEndpointI> TcpEndpointIPtr; -typedef ::std::shared_ptr<UdpEndpointI> UdpEndpointIPtr; -typedef ::std::shared_ptr<WSEndpoint> WSEndpointPtr; -typedef ::std::shared_ptr<EndpointI_connectors> EndpointI_connectorsPtr; +using EndpointIPtr = ::std::shared_ptr<EndpointI>; +using TcpEndpointIPtr = ::std::shared_ptr<TcpEndpointI>; +using UdpEndpointIPtr = ::std::shared_ptr<UdpEndpointI>; +using WSEndpointPtr = ::std::shared_ptr<WSEndpoint>; +using EndpointI_connectorsPtr = ::std::shared_ptr<EndpointI_connectors>; #else // C++98 mapping |