Replace boost::shared_ptr with std::shared_ptr

This commit is contained in:
Vinnie Falco
2014-06-05 10:50:08 -07:00
parent 1aa0749ba8
commit 4362cb660b
103 changed files with 477 additions and 482 deletions

View File

@@ -29,7 +29,7 @@ class CKey; // forward declaration
class Serializer
{
public:
typedef boost::shared_ptr<Serializer> pointer;
typedef std::shared_ptr<Serializer> pointer;
protected:
Blob mData;