diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-07-22 09:37:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-22 09:37:41 +0200 |
commit | 58e27ebd4a16ca9f2ba24826d7162384d5321101 (patch) | |
tree | 657c952451fa3ec9ddddc9848f4d58c6b7119e04 /doc/nimc.rst | |
parent | d5b5827bc2a3724290d3257b0f2fa70004c37c97 (diff) | |
download | Nim-58e27ebd4a16ca9f2ba24826d7162384d5321101.tar.gz |
fixes #12815 (#18554)
Diffstat (limited to 'doc/nimc.rst')
-rw-r--r-- | doc/nimc.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/nimc.rst b/doc/nimc.rst index 070956860..3c451706b 100644 --- a/doc/nimc.rst +++ b/doc/nimc.rst @@ -70,6 +70,12 @@ SmallLshouldNotBeUsed The letter 'l' should not be used as an identifier. EachIdentIsTuple The code contains a confusing `var` declaration. +CStringConv Warn about dangerous implicit conversions + to `cstring`. +EnumConv Warn about conversions from enum to enum. +AnyEnumConv Warn about any conversions to an enum type. +ResultUsed Warn about the usage of the + built-in `result` variable. User Some user-defined warning. ========================== ============================================ |