Minor CODINGSTYLE update: auto_ptr -> unique_ptr
authorIngo Ruhnke <grumbel@gmail.com>
Wed, 6 Aug 2014 02:33:14 +0000 (04:33 +0200)
committerIngo Ruhnke <grumbel@gmail.com>
Wed, 6 Aug 2014 02:33:14 +0000 (04:33 +0200)
CODINGSTYLE

index 6ce9c07..5c8ff32 100644 (file)
@@ -9,7 +9,7 @@ SuperTux Coding Standards
 
 * external libraries are not allowed in src/, they go to external/
 
-* do not use raw pointer and new/delete, use auto_ptr<> instead
+* do not use raw pointer and new/delete, use std::unique_ptr<> instead
 
 * properly separate data members and member functions, don't mix them
   in the same public/private/protected section