make `isLiteral` compatible with ARC and ORC

This commit is contained in:
narimiran 2021-06-30 16:08:06 +02:00
parent 1681197d67
commit 2d4dad0716
1 changed files with 7 additions and 4 deletions

View File

@ -37,6 +37,9 @@ proc len*(vb: VBuffer): int =
doAssert(result >= 0)
proc isLiteral[T](s: seq[T]): bool {.inline.} =
when defined(gcOrc) or defined(gcArc):
false
else:
type
SeqHeader = object
length, reserved: int