From Jason Turner

[diff.cpp11.lex]

Diff to HTML by rtfpessoa

tmp/tmpgvgcn2ep/{from.md → to.md} RENAMED
@@ -9,10 +9,10 @@ International Standard, but the macro invocation produces different
9
  outcomes because the single quotes delimit a character literal in C++11,
10
  whereas they are digit separators in this International Standard:
11
 
12
  ``` cpp
13
  #define M(x, ...) __VA_ARGS__
14
- int x[2] = { M(1'2,3'4) };
15
- // int x[2] = {\ \ \ \ \ } --- C++11
16
- // int x[2] = { 3'4 } --- this International Standard
17
  ```
18
 
 
9
  outcomes because the single quotes delimit a character literal in C++11,
10
  whereas they are digit separators in this International Standard:
11
 
12
  ``` cpp
13
  #define M(x, ...) __VA_ARGS__
14
+ int x[2] = { M(1'2,3'4, 5) };
15
+ // int x[2] = { 5 \ \ \ \ \ } --- C++11
16
+ // int x[2] = { 3'4, 5 } --- this International Standard
17
  ```
18