Contributing.md: Update C++11 mention to C++14

This commit is contained in:
Lioncash 2017-03-01 13:16:02 -05:00
parent 78f6f6108e
commit 8b094081a0
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ private:
## Code Specific ## Code Specific
### General ### General
- Using C++11 features is OK and recommended. - The codebase currently uses C++14.
- Use the [nullptr](http://en.cppreference.com/w/cpp/language/nullptr) type over the macro `NULL`. - Use the [nullptr](http://en.cppreference.com/w/cpp/language/nullptr) type over the macro `NULL`.
- If a [range-based for loop](http://en.cppreference.com/w/cpp/language/range-for) can be used instead of container iterators, use it. - If a [range-based for loop](http://en.cppreference.com/w/cpp/language/range-for) can be used instead of container iterators, use it.
- Obviously, try not to use `goto` unless you have a *really* good reason for it. - Obviously, try not to use `goto` unless you have a *really* good reason for it.