From 15008e8432cab29f97669bcc0e9ebd974784a759 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20=E2=80=9Cweej=E2=80=9D=20Jones?= Date: Mon, 16 Apr 2018 19:25:22 +0100 Subject: [PATCH] Fix T.12's incorrect usage of vector::begin() (#1189) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index c99864c..8327ab3 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -16410,7 +16410,7 @@ Hard. vector v; auto& x = v.front(); // bad - String& s = v.begin(); // good (String is a GSL concept) + String& s = v.front(); // good (String is a GSL concept) ##### Enforcement