summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Dawson <brucedawson@chromium.org>2021-08-28 10:01:49 -0700
committerBruce Dawson <brucedawson@chromium.org>2021-08-28 10:01:49 -0700
commit1130200c2396c58f67831fccbd4eee4df196f696 (patch)
tree8d0cb781ce04706a08a621f944585cdf5d360ba3
parent04170ad365a64caba3f10fbc5e63714ff4c4ad5b (diff)
downloadninja-1130200c2396c58f67831fccbd4eee4df196f696.tar.gz
Update __cplusplus value
-rw-r--r--CONTRIBUTING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 0e24dfd..69dac74 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -16,7 +16,7 @@ a few additions:
* Any code merged into the Ninja codebase which will be part of the main
executable must compile as C++11. You may use C++14 features in a test or an
- unimportant tool if you guard your code with `#if __cplusplus >= 201103L`.
+ unimportant tool if you guard your code with `#if __cplusplus >= 201402L`.
* We have used `using namespace std;` a lot in the past. For new contributions,
please try to avoid relying on it and instead whenever possible use `std::`.
However, please do not change existing code simply to add `std::` unless your