Update link to Chromium Modern C++ style guide

Bug: chromium:1243839
Change-Id: I6a6a25fdb86db1b2dfefbf156697bd0898cb948e
Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/3167210
Reviewed-by: Jamie Madill <jmadill@chromium.org>
Reviewed-by: Charlie Lao <cclao@google.com>
Commit-Queue: Jamie Madill <jmadill@chromium.org>
This commit is contained in:
Joe Mason
2021-09-16 19:14:51 -04:00
committed by Angle LUCI CQ
parent bf7fac123c
commit 455362d393

View File

@@ -35,8 +35,8 @@ This will catch most of the trivial formatting errors and save you time.
* {DO} use nullptr (instead of 0 or NULL) for pointers.
* {DO} use size\_t for loop iterators and size values.
* {DO} use uint8\_t pointers instead of void pointers to denote binary data.
* {DO} use C++11/14 according to the [Chromium c++ 11/14 guide]
(http://chromium-cpp.appspot.com/).
* {DO} use C++11/14 according to the
[Chromium C++ 11/14 guide](https://chromium.googlesource.com/chromium/src/+/main/styleguide/c++/c++11.md).
### [Naming](https://google.github.io/styleguide/cppguide.html#Naming)