Replaced std::auto_ptr<> with std::unique_ptr<>
[supertux.git] / src / physfs / physfs_file_system.hpp
index dea9ad2..7677189 100644 (file)
@@ -25,7 +25,7 @@ public:
   PhysFSFileSystem();
 
   std::vector<std::string>    open_directory(const std::string& pathname);
-  std::auto_ptr<std::istream> open_file(const std::string& filename);
+  std::unique_ptr<std::istream> open_file(const std::string& filename);
 };
 
 #endif