summary refs log tree commit diff stats
path: root/lib/pure
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2019-07-15 17:22:01 +0200
committerAraq <rumpf_a@web.de>2019-07-15 17:22:01 +0200
commit76f9ddb6ab461ba18811c8b257d286602bca0475 (patch)
tree0acb566bf893fe8a291acd812d8b5326e80c791f /lib/pure
parentdd7dd1b6dc775ab106fec3c4224f89d41a5ad176 (diff)
downloadNim-76f9ddb6ab461ba18811c8b257d286602bca0475.tar.gz
fixes #11723
Diffstat (limited to 'lib/pure')
-rw-r--r--lib/pure/strformat.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/strformat.nim b/lib/pure/strformat.nim
index d3026165a..ba75ce95f 100644
--- a/lib/pure/strformat.nim
+++ b/lib/pure/strformat.nim
@@ -415,7 +415,7 @@ proc parseStandardFormatSpecifier*(s: string; start = 0;
     raise newException(ValueError,
       "invalid format string, cannot parse: " & s[i..^1])
 
-proc formatValue*(result: var string; value: SomeInteger; specifier: string) =
+proc formatValue*[T: SomeInteger](result: var string; value: T; specifier: string) =
   ## Standard format implementation for ``SomeInteger``. It makes little
   ## sense to call this directly, but it is required to exist
   ## by the ``&`` macro.
@@ -509,7 +509,7 @@ proc formatValue*(result: var string; value: string; specifier: string) =
       setLen(value, runeOffset(value, spec.precision))
   result.add alignString(value, spec.minimumWidth, spec.align, spec.fill)
 
-proc formatValue[T](result: var string; value: T; specifier: string) =
+proc formatValue[T: not SomeInteger](result: var string; value: T; specifier: string) =
   mixin `$`
   formatValue(result, $value, specifier)