From 76f9ddb6ab461ba18811c8b257d286602bca0475 Mon Sep 17 00:00:00 2001 From: Araq Date: Mon, 15 Jul 2019 17:22:01 +0200 Subject: fixes #11723 --- lib/pure/strformat.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/pure/strformat.nim') 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) -- cgit 1.4.1-2-gfad0