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/PolarSSL++/CtrDrbgContext.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/PolarSSL++/CtrDrbgContext.h') diff --git a/src/PolarSSL++/CtrDrbgContext.h b/src/PolarSSL++/CtrDrbgContext.h index 16b4a44b0..20d687015 100644 --- a/src/PolarSSL++/CtrDrbgContext.h +++ b/src/PolarSSL++/CtrDrbgContext.h @@ -33,7 +33,7 @@ public: cCtrDrbgContext(void); /** Constructs the context with the specified entropy context. */ - cCtrDrbgContext(const SharedPtr & a_EntropyContext); + cCtrDrbgContext(const std::shared_ptr & a_EntropyContext); /** Initializes the context. a_Custom is optional additional data to use for entropy, nullptr is accepted. @@ -45,7 +45,7 @@ public: protected: /** The entropy source used for generating the random */ - SharedPtr m_EntropyContext; + std::shared_ptr m_EntropyContext; /** The random generator context */ ctr_drbg_context m_CtrDrbg; -- cgit v1.2.3