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

pull/1193/head
Alexander “weej” Jones 8 years ago committed by Andrew Pardoe
parent a5e28d4a61
commit 15008e8432

@ -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

Loading…
Cancel
Save