Replaced boost::shared_ptr<> with std::shared_ptr<>
[supertux.git] / src / video / surface_ptr.hpp
index c739c56..5c35568 100644 (file)
 #ifndef HEADER_SUPERTUX_VIDEO_SURFACE_PTR_HPP
 #define HEADER_SUPERTUX_VIDEO_SURFACE_PTR_HPP
 
-#include <boost/shared_ptr.hpp>
+#include <memory>
 
 class Surface;
-typedef boost::shared_ptr<Surface> SurfacePtr;
+typedef std::shared_ptr<Surface> SurfacePtr;
 
 #endif