Update WebRTC's C++ style guide to reflect the switch to C++14.

No-Try: True
Bug: webrtc:10945
Change-Id: Ife5d5c12144e00aeefd5ccfe8470c8741ad8eb54
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/151460
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Reviewed-by: Danil Chapovalov <danilchap@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#29194}
This commit is contained in:
Mirko Bonadei
2019-09-11 09:02:23 +02:00
committed by Commit Bot
parent a740142398
commit 1b6a30ddcc

View File

@ -22,14 +22,14 @@ both.
### C++ version
WebRTC is written in C++11, but with some restrictions:
WebRTC is written in C++14, but with some restrictions:
* We only allow the subset of C++11 (language and library) in the
“allowed” section of [this Chromium page][chromium-cpp11].
* We only allow the subset of C++11 that is also valid C++14;
otherwise, users would not be able to compile WebRTC in C++14 mode.
* We only allow the subset of C++14 (language and library) that is not
banned by Chromium; see [this page][chromium-cpp].
* We only allow the subset of C++14 that is also valid C++17;
otherwise, users would not be able to compile WebRTC in C++17 mode.
[chromium-cpp11]: https://chromium-cpp.appspot.com/
[chromium-cpp]: https://chromium-cpp.appspot.com/
### Abseil