From: bert hubert Date: Tue, 28 Apr 2015 17:56:01 +0000 (+0200) Subject: some deboostification I missed on my own platform X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~88^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=41e6efd6b24ad7ccb10bf8d1114e761c37d82e5a;p=pdns some deboostification I missed on my own platform --- diff --git a/pdns/pkcs11signers.cc b/pdns/pkcs11signers.cc index d827bd4d3..0a3380b36 100644 --- a/pdns/pkcs11signers.cc +++ b/pdns/pkcs11signers.cc @@ -630,7 +630,7 @@ std::shared_ptr Pkcs11Token::GetToken(const std::string& module, co // see if we have slot if ((slotIter = pkcs11_slots.find(sidx)) != pkcs11_slots.end()) { - pkcs11_tokens[tidx] = boost::make_shared(slotIter->second, label); + pkcs11_tokens[tidx] = std::make_shared(slotIter->second, label); return pkcs11_tokens[tidx]; } @@ -656,10 +656,10 @@ std::shared_ptr Pkcs11Token::GetToken(const std::string& module, co } // store slot - pkcs11_slots[sidx] = boost::make_shared(functions, slotId); + pkcs11_slots[sidx] = std::make_shared(functions, slotId); // looks ok to me. - pkcs11_tokens[tidx] = boost::make_shared(pkcs11_slots[sidx], label); + pkcs11_tokens[tidx] = std::make_shared(pkcs11_slots[sidx], label); return pkcs11_tokens[tidx]; }