mirror of
https://github.com/logos-storage/nim-nitro.git
synced 2026-01-08 00:23:10 +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.}
|