.inheritable fix for 1.6 (#21768)

This commit is contained in:
metagn
2023-05-03 19:30:43 +03:00
committed by GitHub
parent 2072eebcea
commit c2d098b974
20 changed files with 41 additions and 26 deletions

View File

@@ -3,7 +3,7 @@
type
TRadixNodeKind = enum rnLinear, rnFull, rnLeaf
PRadixNode = ref TRadixNode
TRadixNode = object {.inheritable.}
TRadixNode {.inheritable.} = object
kind: TRadixNodeKind
TRadixNodeLinear = object of TRadixNode
len: int8