projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
13d46f2
)
Minor CODINGSTYLE update: auto_ptr -> unique_ptr
author
Ingo Ruhnke
<grumbel@gmail.com>
Wed, 6 Aug 2014 02:33:14 +0000
(
04:33
+0200)
committer
Ingo Ruhnke
<grumbel@gmail.com>
Wed, 6 Aug 2014 02:33:14 +0000
(
04:33
+0200)
CODINGSTYLE
patch
|
blob
|
history
diff --git
a/CODINGSTYLE
b/CODINGSTYLE
index
6ce9c07
..
5c8ff32
100644
(file)
--- 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