Fix T.12's incorrect usage of vector::begin() (#1189)

This commit is contained in:
Alexander “weej” Jones 2018-04-16 19:25:22 +01:00 committed by Andrew Pardoe
parent a5e28d4a61
commit 15008e8432

View File

@ -16410,7 +16410,7 @@ Hard.
vector<string> 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