diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-05-30 14:57:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-30 23:57:25 +0200 |
commit | 98ea61f09b4bfdc13c911b1ff3fb404dfc0d1338 (patch) | |
tree | c44ed5c5e41f167918a1080a5e3996a54b8cb537 /lib/system.nim | |
parent | 50e98e6efaca05b60b33db0c878f04951a43b3b8 (diff) | |
download | Nim-98ea61f09b4bfdc13c911b1ff3fb404dfc0d1338.tar.gz |
dont silence hints in system.nim (#18034)
Diffstat (limited to 'lib/system.nim')
-rw-r--r-- | lib/system.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system.nim b/lib/system.nim index be30665dd..942d29fe8 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -112,7 +112,7 @@ proc compileOption*(option, arg: string): bool {. discard "compiled with optimization for size and uses Boehm's GC" {.push warning[GcMem]: off, warning[Uninit]: off.} -{.push hints: off.} +# {.push hints: off.} proc `or`*(a, b: typedesc): typedesc {.magic: "TypeTrait", noSideEffect.} ## Constructs an `or` meta class. @@ -2471,7 +2471,7 @@ proc quit*(errormsg: string, errorcode = QuitFailure) {.noreturn.} = quit(errorcode) {.pop.} # checks: off -{.pop.} # hints: off +# {.pop.} # hints: off proc `/`*(x, y: int): float {.inline, noSideEffect.} = ## Division of integers that results in a float. |