summary refs log tree commit diff stats
path: root/lib/core
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2015-03-01 21:41:21 +0100
committerAraq <rumpf_a@web.de>2015-03-01 21:41:21 +0100
commit24ae0c387f4f95f5e61279dc3c78c117ca939eca (patch)
tree5c0bd2f0fb845c541224b3c49550cf58f8a056fd /lib/core
parent566ee874cde6defb128cdf9df124c45146187129 (diff)
downloadNim-24ae0c387f4f95f5e61279dc3c78c117ca939eca.tar.gz
some love for the testsuite; fixed regressions
Diffstat (limited to 'lib/core')
-rw-r--r--lib/core/typeinfo.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/core/typeinfo.nim b/lib/core/typeinfo.nim
index 0046924a1..c3ff66591 100644
--- a/lib/core/typeinfo.nim
+++ b/lib/core/typeinfo.nim
@@ -66,9 +66,9 @@ type
   ppointer = ptr pointer
   pbyteArray = ptr array[0.. 0xffff, int8]
 
-  TGenSeq = object
+  TGenericSeq {.importc.} = object
     len, space: int
-  PGenSeq = ptr TGenSeq
+  PGenSeq = ptr TGenericSeq
 
 const
   GenericSeqSize = (2 * sizeof(int))