Fix compilation error on older Nim versions

This commit is contained in:
Zed 2021-12-20 16:31:41 +01:00
parent 5b185c79de
commit 92ace2bf70
1 changed files with 6 additions and 1 deletions

View File

@ -7,4 +7,9 @@
# disable annoying warnings
warning("GcUnsafe2", off)
warning("ObservableStores", off)
warning("HoleEnumConv", off)
const
nimVersion = (major: NimMajor, minor: NimMinor, patch: NimPatch)
when nimVersion >= (1, 6, 0):
warning("HoleEnumConv", off)