Commit c54a138f by Gerald Pfeifer Committed by Gerald Pfeifer

cpp.texi (Variadic Macros): Fix line continuation in an example.

	* doc/cpp.texi (Variadic Macros): Fix line continuation in an
	example.

From-SVN: r259012
parent 5b6f2bf3
2018-04-02 Gerald Pfeifer <gerald@pfeifer.com>
* doc/cpp.texi (Variadic Macros): Fix line continuation in an
example.
2018-04-02 Chung-Ju Wu <jasonwucj@gmail.com> 2018-04-02 Chung-Ju Wu <jasonwucj@gmail.com>
* config/nds32/nds32.c (TARGET_CANONICALIZE_COMPARISON): Define. * config/nds32/nds32.c (TARGET_CANONICALIZE_COMPARISON): Define.
......
...@@ -1710,7 +1710,7 @@ invocation expands to its argument; but if the variable argument does ...@@ -1710,7 +1710,7 @@ invocation expands to its argument; but if the variable argument does
not have any tokens, the @code{@w{__VA_OPT__}} expands to nothing: not have any tokens, the @code{@w{__VA_OPT__}} expands to nothing:
@smallexample @smallexample
#define eprintf(format, @dots{}) \\ #define eprintf(format, @dots{}) \
fprintf (stderr, format __VA_OPT__(,) __VA_ARGS__) fprintf (stderr, format __VA_OPT__(,) __VA_ARGS__)
@end smallexample @end smallexample
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment