Fix compilation error on older Nim versions
This commit is contained in:
parent
5b185c79de
commit
92ace2bf70
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue