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/IPEndpointIF.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/IPEndpointIF.h')
-rw-r--r-- | cpp/src/Ice/IPEndpointIF.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/IPEndpointIF.h b/cpp/src/Ice/IPEndpointIF.h index bc8513b4bd4..4a346f5b545 100644 --- a/cpp/src/Ice/IPEndpointIF.h +++ b/cpp/src/Ice/IPEndpointIF.h @@ -19,7 +19,7 @@ namespace IceInternal class IPEndpointI; #ifdef ICE_CPP11_MAPPING -typedef ::std::shared_ptr<IPEndpointI> IPEndpointIPtr; +using IPEndpointIPtr = ::std::shared_ptr<IPEndpointI>; #else ICE_API IceUtil::Shared* upCast(IPEndpointI*); typedef Handle<IPEndpointI> IPEndpointIPtr; |