summary refs log tree commit diff stats
path: root/lib/sysstr.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sysstr.nim')
-rw-r--r--lib/sysstr.nim7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/sysstr.nim b/lib/sysstr.nim
index 921a92ff5..72f50f85a 100644
--- a/lib/sysstr.nim
+++ b/lib/sysstr.nim
@@ -15,13 +15,6 @@
 # we don't use refcounts because that's a behaviour
 # the programmer may not want
 
-type
-  # len and space without counting the terminating zero:
-  NimStringDesc {.compilerproc, final.} = object of TGenericSeq
-    data: array[0..100_000_000, char] # for the '\0' character
-
-  NimString = ptr NimStringDesc
-
 # implementation:
 
 proc resize(old: int): int {.inline.} =