diff options
author | Araq <rumpf_a@web.de> | 2012-04-15 10:02:15 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-04-15 10:02:15 +0200 |
commit | 959e370ae9f5c1e91b735f0633895780bb832235 (patch) | |
tree | e9d65e4e118c4285b9ca376ce69d8ad69fdc5f98 /lib/system | |
parent | 36287310644b31ed3b65922075d49e58940cdd7e (diff) | |
download | Nim-959e370ae9f5c1e91b735f0633895780bb832235.tar.gz |
@ is a sigil-like operator
Diffstat (limited to 'lib/system')
-rwxr-xr-x | lib/system/sysstr.nim | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/system/sysstr.nim b/lib/system/sysstr.nim index eef8163fe..c61cf2bea 100755 --- a/lib/system/sysstr.nim +++ b/lib/system/sysstr.nim @@ -237,8 +237,6 @@ proc nimFloatToStr(x: float): string {.compilerproc.} = return $buf proc nimInt64ToStr(x: int64): string {.compilerRtl.} = - # we don't rely on C's runtime here as some C compiler's - # int64 support is weak result = newString(sizeof(x)*4) var i = 0 var y = x |