diff options
author | Araq <rumpf_a@web.de> | 2015-10-22 11:58:21 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-10-22 12:14:31 +0200 |
commit | e722770fbb5478e08af81603bd51576ca37abe2f (patch) | |
tree | 98751ce7af6d6ab7b4732db9092f39a7ec15d470 /compiler/commands.nim | |
parent | bf6211df6c0717109a235122d182d9fc101879ca (diff) | |
download | Nim-e722770fbb5478e08af81603bd51576ca37abe2f.tar.gz |
doc\advopt.txt
added --reportConceptFailures switch
Diffstat (limited to 'compiler/commands.nim')
-rw-r--r-- | compiler/commands.nim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/commands.nim b/compiler/commands.nim index 6b2f074e8..2ed3f92a9 100644 --- a/compiler/commands.nim +++ b/compiler/commands.nim @@ -434,6 +434,8 @@ proc processSwitch(switch, arg: string, pass: TCmdLinePass, info: TLineInfo) = of "linedir": processOnOffSwitch({optLineDir}, arg, pass, info) of "assertions", "a": processOnOffSwitch({optAssert}, arg, pass, info) of "deadcodeelim": processOnOffSwitchG({optDeadCodeElim}, arg, pass, info) + of "reportconceptfailures": + processOnOffSwitchG({optReportConceptFailures}, arg, pass, info) of "threads": processOnOffSwitchG({optThreads}, arg, pass, info) #if optThreads in gGlobalOptions: incl(gNotes, warnGcUnsafe) |