From a56cfd1f42663856e346a26cbad401aec07bed91 Mon Sep 17 00:00:00 2001 From: peterbell10 Date: Thu, 20 Jul 2017 12:19:18 +0100 Subject: Remove smart pointer macros --- src/OSSupport/TCPLinkImpl.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/OSSupport/TCPLinkImpl.h') diff --git a/src/OSSupport/TCPLinkImpl.h b/src/OSSupport/TCPLinkImpl.h index d582e2f8d..0437353fb 100644 --- a/src/OSSupport/TCPLinkImpl.h +++ b/src/OSSupport/TCPLinkImpl.h @@ -22,9 +22,9 @@ // fwd: class cServerHandleImpl; -typedef SharedPtr cServerHandleImplPtr; +typedef std::shared_ptr cServerHandleImplPtr; class cTCPLinkImpl; -typedef SharedPtr cTCPLinkImplPtr; +typedef std::shared_ptr cTCPLinkImplPtr; typedef std::vector cTCPLinkImplPtrs; @@ -79,8 +79,8 @@ protected: // fwd: class cLinkTlsContext; - typedef SharedPtr cLinkTlsContextPtr; - typedef WeakPtr cLinkTlsContextWPtr; + typedef std::shared_ptr cLinkTlsContextPtr; + typedef std::weak_ptr cLinkTlsContextWPtr; /** Wrapper around cSslContext that is used when this link is being encrypted by SSL. */ class cLinkTlsContext : -- cgit v1.2.3