Fixed rest of T.12 example following up #1189

This commit is contained in:
hsutter 2018-04-16 11:26:15 -07:00
parent 15008e8432
commit 93ac723f6b

View File

@ -16408,7 +16408,7 @@ Hard.
##### Example (using TS concepts)
vector<string> v;
vector<string> v{ "abc", "xyz" };
auto& x = v.front(); // bad
String& s = v.front(); // good (String is a GSL concept)