From Jason Turner

[cpp.error]

Diff to HTML by rtfpessoa

tmp/tmpttfg_lnx/{from.md → to.md} RENAMED
@@ -1,12 +1,13 @@
1
- ## Error directive <a id="cpp.error">[[cpp.error]]</a>
2
 
3
- A preprocessing directive of the form
4
 
5
  ``` bnf
6
  '# error' pp-tokensₒₚₜ new-line
 
7
  ```
8
 
9
- causes the implementation to produce a diagnostic message that includes
10
- the specified sequence of preprocessing tokens, and renders the program
11
- ill-formed.
12
 
 
1
+ ## Diagnostic directives <a id="cpp.error">[[cpp.error]]</a>
2
 
3
+ A preprocessing directive of either of the following forms
4
 
5
  ``` bnf
6
  '# error' pp-tokensₒₚₜ new-line
7
+ '# warning' pp-tokensₒₚₜ new-line
8
  ```
9
 
10
+ causes the implementation to produce a diagnostic message that should
11
+ include the specified sequence of preprocessing tokens; the `# error`
12
+ directive renders the program ill-formed.
13