From Jason Turner

[lex.trigraph]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpml4cs7ze/{from.md → to.md} +0 -20
tmp/tmpml4cs7ze/{from.md → to.md} RENAMED
@@ -1,20 +0,0 @@
1
- ## Trigraph sequences <a id="lex.trigraph">[[lex.trigraph]]</a>
2
-
3
- Before any other processing takes place, each occurrence of one of the
4
- following sequences of three characters (“*trigraph sequences*”) is
5
- replaced by the single character indicated in Table 
6
- [[tab:trigraph.sequences]].
7
-
8
- ``` cpp
9
- ??=define arraycheck(a,b) a??(b??) ??!??! b??(a??)
10
- ```
11
-
12
- becomes
13
-
14
- ``` cpp
15
- #define arraycheck(a,b) a[b] || b[a]
16
- ```
17
-
18
- No other trigraph sequence exists. Each `?` that does not begin one of
19
- the trigraphs listed above is not changed.
20
-