diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2019-01-12 15:26:22 -0800 |
---|---|---|
committer | Timothee Cour <timothee.cour2@gmail.com> | 2019-01-14 17:00:54 -0800 |
commit | 0a8762eb7b4b3c00cb78a40430f51080913a9ee6 (patch) | |
tree | 850fbc31138d8e93dd8af3474e7781b481a435eb /compiler | |
parent | e17321aa2429c6bed97bef28a149fd21166b90a2 (diff) | |
download | Nim-0a8762eb7b4b3c00cb78a40430f51080913a9ee6.tar.gz |
fix #9842 #9951: `nim -r` and parseopt.cmdLineRest are now correct
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/lineinfos.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/lineinfos.nim b/compiler/lineinfos.nim index 21ce44406..165d75821 100644 --- a/compiler/lineinfos.nim +++ b/compiler/lineinfos.nim @@ -171,7 +171,7 @@ proc computeNotesVerbosity(): array[0..3, TNoteKinds] = warnGcUnsafe, hintPath, hintDependency, hintCodeBegin, hintCodeEnd, hintSource, hintGlobalVar, hintGCStats} result[0] = result[1] - {hintSuccessX, hintSuccess, hintConf, - hintProcessing, hintPattern, hintExecuting, hintLinking} + hintProcessing, hintPattern, hintExecuting, hintLinking, hintCC} const NotesVerbosity* = computeNotesVerbosity() |