diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-07-06 21:20:16 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-07-06 21:20:16 +0200 |
commit | d2684cdfd2d7db18bf9ea3e2efcb8e80b0fc9131 (patch) | |
tree | ec69ac7e61b42dc31f7ec49892b5b95dff7ae07d /lib/system/strmantle.nim | |
parent | cab0c3e544bb65bdd9b0f2d0e60dce55ac0776ad (diff) | |
download | Nim-d2684cdfd2d7db18bf9ea3e2efcb8e80b0fc9131.tar.gz |
fixes #11447
Diffstat (limited to 'lib/system/strmantle.nim')
-rw-r--r-- | lib/system/strmantle.nim | 2 |
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: |