Fixed a typo within ES.23

pull/1284/head
Martin 7 years ago committed by Jonathan Wakely
parent e81d770bdc
commit 0b275097b6

@ -10508,7 +10508,7 @@ The C++17 rules are somewhat less surprising:
auto x2 = {7}; // x2 is an initializer_list<int> with an element 7
auto x11 {7, 8}; // error: two initializers
auto x22 = {7, 8}; // x2 is an initializer_list<int> with elements 7 and 8
auto x22 = {7, 8}; // x22 is an initializer_list<int> with elements 7 and 8
So use `={...}` if you really want an `initializer_list<T>`

@ -621,6 +621,7 @@ WG21
'widen'
x1
x2
x22
xmax
xor
Xs

Loading…
Cancel
Save