diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-08-27 19:18:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-27 19:18:56 +0200 |
commit | 114da04cbbaa7930a38ba8ca59229447aee7b40f (patch) | |
tree | 9e832fb5740bfc334b97d5eaef357965c481c28f /changelog.md | |
parent | d8177a398059334a7d36c1ba0d98b39516815edd (diff) | |
download | Nim-114da04cbbaa7930a38ba8ca59229447aee7b40f.tar.gz |
fixes #12029; finish the 'unused import' feature (#12064)
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index f29a4c69d..749959e3c 100644 --- a/changelog.md +++ b/changelog.md @@ -58,6 +58,10 @@ - The Nim compiler now does not recompile the Nim project via ``nim c -r`` if no dependent Nim file changed. This feature can be overridden by the ``--forceBuild`` command line option. +- The Nim compiler now warns about unused module imports. You can use a + top level ``{.used.}`` pragma in the module that you want to be importable + without producing this warning. + ### Compiler changes |