mirror of
https://github.com/logos-storage/nim-nitro.git
synced 2026-01-09 00:53:06 +00:00
9 lines
284 B
Nim
9 lines
284 B
Nim
|
|
## Include this file to indicate that your module does not raise Errors.
|
||
|
|
## Disables compiler hints about unused declarations in Nim < 1.4.0
|
||
|
|
|
||
|
|
when (NimMajor, NimMinor, NimPatch) >= (1, 4, 0):
|
||
|
|
{.push raises:[].}
|
||
|
|
else:
|
||
|
|
{.push raises: [Defect].}
|
||
|
|
{.hint[XDeclaredButNotUsed]: off.}
|