Replaced boost::shared_ptr<> with std::shared_ptr<>
[supertux.git] / src / video / texture_manager.hpp
index 306b40e..54520e2 100644 (file)
 #include <config.h>
 
 #include <map>
+#include <memory>
 #include <set>
 #include <string>
 #include <vector>
-#include <boost/weak_ptr.hpp>
 
 #include "util/currenton.hpp"
 #include "video/glutil.hpp"
@@ -55,7 +55,7 @@ public:
 private:
   friend class Texture;
 
-  typedef std::map<std::string, boost::weak_ptr<Texture> > ImageTextures;
+  typedef std::map<std::string, std::weak_ptr<Texture> > ImageTextures;
   ImageTextures m_image_textures;
 
   typedef std::map<std::string, SDL_Surface*> Surfaces;