From 0c38943ee1127d87cc7c0dbf457649b3d53d94be Mon Sep 17 00:00:00 2001 From: Mikaela Szekely Date: Sun, 5 May 2019 10:03:39 -0600 Subject: [PATCH] Document that the codebase uses C++17 in Contributing.md --- Contributing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Contributing.md b/Contributing.md index b7c048cc07..2bcfeafcfd 100644 --- a/Contributing.md +++ b/Contributing.md @@ -171,7 +171,7 @@ Summary: - [Classes and Structs](#cpp-code-classes-and-structs) ## General -- The codebase currently uses C++14. +- The codebase currently uses C++17. - 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. - Obviously, try not to use `goto` unless you have a *really* good reason for it.