]> git.stg.codes - stg.git/blobdiff - stargazer/plugins/other/radius/conn.h
Replace boost::scoped_ptr with std::unique_ptr.
[stg.git] / stargazer / plugins / other / radius / conn.h
index 96e74300f2f7f8b413570f0b362f3a970415792e..7b633d71dc9112606b5c3df916d772d85ab8e005 100644 (file)
@@ -21,9 +21,8 @@
 #ifndef __STG_SGCONFIG_CONN_H__
 #define __STG_SGCONFIG_CONN_H__
 
-#include <boost/scoped_ptr.hpp>
-
 #include <string>
+#include <memory>
 
 class USER;
 class USERS;
@@ -50,7 +49,7 @@ class Conn
 
     private:
         class Impl;
-        boost::scoped_ptr<Impl> m_impl;
+        std::unique_ptr<Impl> m_impl;
 };
 
 }