diff options
Diffstat (limited to 'lib/core/seqs.nim')
-rw-r--r-- | lib/core/seqs.nim | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/core/seqs.nim b/lib/core/seqs.nim index a41ef10ab..977b23b26 100644 --- a/lib/core/seqs.nim +++ b/lib/core/seqs.nim @@ -70,12 +70,6 @@ proc `=sink`[T](x: var seq[T]; y: seq[T]) = a.len = b.len a.p = b.p -when false: - proc incrSeqV3(s: PGenericSeq, typ: PNimType): PGenericSeq {.compilerProc.} - proc setLengthSeqV2(s: PGenericSeq, typ: PNimType, newLen: int): PGenericSeq {. - compilerRtl.} - proc newSeq(typ: PNimType, len: int): pointer {.compilerRtl.} - type PayloadBase = object |