From: Ingo Ruhnke Date: Wed, 6 Aug 2014 02:33:14 +0000 (+0200) Subject: Minor CODINGSTYLE update: auto_ptr -> unique_ptr X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=886fc4bdb2390e53e9366841affc2dc299981b97;p=supertux.git Minor CODINGSTYLE update: auto_ptr -> unique_ptr --- diff --git a/CODINGSTYLE b/CODINGSTYLE index 6ce9c079f..5c8ff3266 100644 --- a/CODINGSTYLE +++ b/CODINGSTYLE @@ -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