[apathy] [PATCH] Replace boost::shared_ptr with std::shared_ptr

This commit is contained in:
DarthArgus
2016-07-25 05:33:05 +00:00
parent d7f94e8f7c
commit e20ac25bfc
6 changed files with 20 additions and 21 deletions
@@ -42,7 +42,7 @@ private:
ScriptDictionary(const ScriptDictionary &);
ScriptDictionary & operator = (const ScriptDictionary &);
};
typedef boost::shared_ptr<ScriptDictionary> ScriptDictionaryPtr;
typedef std::shared_ptr<ScriptDictionary> ScriptDictionaryPtr;
inline ScriptDictionary::ScriptDictionary(void)