]> git.stg.codes - stg.git/blobdiff - rlm_stg/stg_client.h
Replace boost::scoped_ptr with std::unique_ptr.
[stg.git] / rlm_stg / stg_client.h
index 4d4c582b6529379272fe58570f024c85b984d32e..249b887134167ce45f6ba60fdec98f8c1adf780b 100644 (file)
@@ -23,9 +23,8 @@
 
 #include "types.h"
 
-#include <boost/scoped_ptr.hpp>
-
 #include <string>
+#include <memory>
 #include <cstdint>
 
 namespace STG
@@ -48,7 +47,7 @@ public:
 
 private:
     class Impl;
-    boost::scoped_ptr<Impl> m_impl;
+    std::unique_ptr<Impl> m_impl;
 };
 
 } // namespace RLM