mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-29 00:23:48 +00:00
Reword and fix some typos in CODING_STYLE guide
This commit is contained in:
parent
f44aad06db
commit
732503eb30
@ -77,11 +77,11 @@ private:
|
||||
|
||||
## C++11
|
||||
|
||||
We are using some C++11 features, mainly:
|
||||
We are using some modern C++ (C++11, C++14, etc.) features, mainly:
|
||||
|
||||
* Use `nullptr` instead of `NULL` macro
|
||||
* Use `auto` for complex types, iterators, or when it's variable type
|
||||
obvious (e.g. `auto s = new Sprite;`)
|
||||
* Use `auto` for complex types, iterators, or when the variable type
|
||||
is obvious (e.g. `auto s = new Sprite;`)
|
||||
* Use range-based for loops (`for (const auto& item : values) { ... }`)
|
||||
* Use template alias (`template<typename T> alias = orig<T>;`)
|
||||
* Use non-generic lambda functions
|
||||
|
Loading…
Reference in New Issue
Block a user