diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-07-15 12:56:03 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-07-15 12:56:03 +0200 |
commit | 0834cd63d99a8a63682a033bd6222dc6cee4b3a9 (patch) | |
tree | b155afdfd863273b066f595da2de0bfd5dbb46aa /lib/system.nim | |
parent | 3e72c98d49ff6c9c07251e2497c5b245770bec5e (diff) | |
download | Nim-0834cd63d99a8a63682a033bd6222dc6cee4b3a9.tar.gz |
prepare Nim codebase for upcoming parser changes
Diffstat (limited to 'lib/system.nim')
-rw-r--r-- | lib/system.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim index 6a4265e5a..40607bdb3 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -1523,7 +1523,7 @@ type # these work for most platforms: ## This is the same as the type ``unsigned long long`` in *C*. cstringArray* {.importc: "char**", nodecl.} = ptr - array [0..ArrayDummySize, cstring] + array[0..ArrayDummySize, cstring] ## This is binary compatible to the type ``char**`` in *C*. The array's ## high value is large enough to disable bounds checking in practice. ## Use `cstringArrayToSeq` to convert it into a ``seq[string]``. |