Replaced std::auto_ptr<> with std::unique_ptr<>
[supertux.git] / src / util / ref.hpp
index f167860..90c9e62 100644 (file)
@@ -19,7 +19,7 @@
 
 /** This class behaves like a pointer to a refcounted object, but increments the
  * reference count when new objects are assigned and decrements the refcounter
- * when its lifetime has expired. (similar to std::auto_ptr)
+ * when its lifetime has expired. (similar to std::unique_ptr)
  */
 template<typename T>
 class Ref