diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-07-27 13:32:59 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-07-27 13:32:59 -0300 |
commit | 0acd55898d0aaae8dbc14c8a1bc1e3bdffc8701b (patch) | |
tree | 0ac634fed90877130b1f102bf4075af999de2158 /manual | |
parent | 15231d4fb2f6984b25e0353ff46eda1a180b686d (diff) | |
download | lua-0acd55898d0aaae8dbc14c8a1bc1e3bdffc8701b.tar.gz lua-0acd55898d0aaae8dbc14c8a1bc1e3bdffc8701b.tar.bz2 lua-0acd55898d0aaae8dbc14c8a1bc1e3bdffc8701b.zip |
Added gcc option '-Wconversion'
No warnings for standard numerical types. Still pending alternative
numerical types.
Diffstat (limited to 'manual')
-rw-r--r-- | manual/manual.of | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/manual.of b/manual/manual.of index c7f6904a..93e3a114 100644 --- a/manual/manual.of +++ b/manual/manual.of | |||
@@ -3995,7 +3995,7 @@ The conversion specifiers can only be | |||
3995 | @Char{%p} (inserts a pointer), | 3995 | @Char{%p} (inserts a pointer), |
3996 | @Char{%d} (inserts an @T{int}), | 3996 | @Char{%d} (inserts an @T{int}), |
3997 | @Char{%c} (inserts an @T{int} as a one-byte character), and | 3997 | @Char{%c} (inserts an @T{int} as a one-byte character), and |
3998 | @Char{%U} (inserts a @T{long int} as a @x{UTF-8} byte sequence). | 3998 | @Char{%U} (inserts an @T{unsigned long} as a @x{UTF-8} byte sequence). |
3999 | 3999 | ||
4000 | This function may raise errors due to memory overflow | 4000 | This function may raise errors due to memory overflow |
4001 | or an invalid conversion specifier. | 4001 | or an invalid conversion specifier. |