diff options
Diffstat (limited to '')
-rw-r--r-- | src/OSSupport/IPLookup.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/OSSupport/IPLookup.h b/src/OSSupport/IPLookup.h index 600ce0af2..4e3065f1c 100644 --- a/src/OSSupport/IPLookup.h +++ b/src/OSSupport/IPLookup.h @@ -39,7 +39,7 @@ protected: /** Callback that is called by LibEvent when there's an event for the request. */ void Callback(int a_Result, const char * a_Address); }; -typedef SharedPtr<cIPLookup> cIPLookupPtr; +typedef std::shared_ptr<cIPLookup> cIPLookupPtr; typedef std::vector<cIPLookupPtr> cIPLookupPtrs; |