]> git.stg.codes - stg.git/blobdiff - rlm_stg/conn.h
Replace boost::scoped_ptr with std::unique_ptr.
[stg.git] / rlm_stg / conn.h
index 6b6fd2616382f6d833761d843d57ba2f1c1a70ae..92fbff826cc64392ff6585a2a1839a242aa790cc 100644 (file)
@@ -23,9 +23,8 @@
 
 #include "types.h"
 
-#include <boost/scoped_ptr.hpp>
-
 #include <string>
+#include <memory>
 #include <stdexcept>
 #include <cstdint>
 
@@ -53,7 +52,7 @@ class Conn
 
     private:
         class Impl;
-        boost::scoped_ptr<Impl> m_impl;
+        std::unique_ptr<Impl> m_impl;
 };
 
 }