diff options
Diffstat (limited to 'lib/system.nim')
-rwxr-xr-x | lib/system.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system.nim b/lib/system.nim index 1ce7a4d60..226642771 100755 --- a/lib/system.nim +++ b/lib/system.nim @@ -787,9 +787,9 @@ proc compileOption*(option, arg: string): bool {. const hasThreadSupport = compileOption("threads") hasSharedHeap = defined(boehmgc) # don't share heaps; every thread has its own -# taintMode = compileOption("taintmode") + taintMode = compileOption("taintmode") -when defined(taintMode): +when taintMode: # XXX use a compile time option for it! type TaintedString* = distinct string ## a distinct string type that ## is `tainted`:idx:. It is an alias for |