summary refs log tree commit diff stats
path: root/lib/system/strmantle.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2019-07-06 21:20:16 +0200
committerAndreas Rumpf <rumpf_a@web.de>2019-07-06 21:20:16 +0200
commitd2684cdfd2d7db18bf9ea3e2efcb8e80b0fc9131 (patch)
treeec69ac7e61b42dc31f7ec49892b5b95dff7ae07d /lib/system/strmantle.nim
parentcab0c3e544bb65bdd9b0f2d0e60dce55ac0776ad (diff)
downloadNim-d2684cdfd2d7db18bf9ea3e2efcb8e80b0fc9131.tar.gz
fixes #11447
Diffstat (limited to 'lib/system/strmantle.nim')
-rw-r--r--lib/system/strmantle.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/strmantle.nim b/lib/system/strmantle.nim
index 66477923c..a54f7a562 100644
--- a/lib/system/strmantle.nim
+++ b/lib/system/strmantle.nim
@@ -304,7 +304,7 @@ proc nimCharToStr(x: char): string {.compilerRtl.} =
   result = newString(1)
   result[0] = x
 
-proc `$`*(x: uint64): string {.noSideEffect.} =
+proc `$`*(x: uint64): string {.noSideEffect, raises: [].} =
   ## The stringify operator for an unsigned integer argument. Returns `x`
   ## converted to a decimal string.
   if x == 0: