X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/46b0747592074017ff0ea4b33d4a7194235886e5..a42349b9f8b4cbdcc6ad763ccf509f84fbaaf39d:/libs/json/include/stg/json_parser.h diff --git a/libs/json/include/stg/json_parser.h b/libs/json/include/stg/json_parser.h index a6142579..5884039d 100644 --- a/libs/json/include/stg/json_parser.h +++ b/libs/json/include/stg/json_parser.h @@ -25,8 +25,7 @@ #include <string> #include <map> - -#include <boost/scoped_ptr.hpp> +#include <memory> namespace STG { @@ -59,7 +58,7 @@ class Parser private: class Impl; - boost::scoped_ptr<Impl> m_impl; + std::unique_ptr<Impl> m_impl; }; template <typename T>