diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2017-03-31 16:40:21 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-03-31 16:40:21 +0200 |
commit | 529609f7ed31fd0df25ad3e6ce89948430167d86 (patch) | |
tree | d7bb65b46aaaccdf80f524dfb4ea801f929ef1db /compiler/options.nim | |
parent | 82bf1e6697e3864058e94773c88a422f0686df02 (diff) | |
parent | c11d7c35dd0dbe54cef108988955c48f4e1fab48 (diff) | |
download | Nim-529609f7ed31fd0df25ad3e6ce89948430167d86.tar.gz |
Merge remote-tracking branch 'origin/concepts-rebased' into araq
Diffstat (limited to 'compiler/options.nim')
-rw-r--r-- | compiler/options.nim | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/compiler/options.nim b/compiler/options.nim index 6372cddac..c4a57f41c 100644 --- a/compiler/options.nim +++ b/compiler/options.nim @@ -41,7 +41,6 @@ type # please make sure we have under 32 options TGlobalOption* = enum # **keep binary compatible** gloptNone, optForceFullMake, optDeadCodeElim, optListCmd, optCompileOnly, optNoLinking, - optReportConceptFailures, # report 'compiles' or 'concept' matching failures optCDebug, # turn on debugging information optGenDynLib, # generate a dynamic library optGenStaticLib, # generate a static library @@ -73,8 +72,8 @@ type # please make sure we have under 32 options TGlobalOptions* = set[TGlobalOption] const - harmlessOptions* = {optForceFullMake, optNoLinking, optReportConceptFailures, - optRun, optUseColors, optStdout} + harmlessOptions* = {optForceFullMake, optNoLinking, optRun, + optUseColors, optStdout} type TCommands* = enum # Nim's commands |