Skip to content

Commit 4bbaa96

Browse files
authored
Merge pull request #8 from Yardanico/patch-1
Fix compilation for nim devel
2 parents 0bb4f45 + 315a882 commit 4bbaa96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parsetoml.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ proc pow10(x : float64, pow : int64) : float64 {. inline .} =
528528
10.0'f64
529529

530530
result = x
531-
for idx in countup(1, abs(pow)):
531+
for idx in countup(1'i64, abs(pow)):
532532
result *= mulFactor
533533

534534
proc parseValue(state : var ParserState) : TomlValueRef =

0 commit comments

Comments
 (0)