mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-21 20:10:44 +00:00
make tests green again
This commit is contained in:
@@ -8,7 +8,7 @@ import
|
||||
strutils
|
||||
|
||||
type
|
||||
TBuffer = array [0..10, int8]
|
||||
TBuffer = array[0..10, int8]
|
||||
|
||||
proc toVarNum(x: int32, b: var TBuffer) =
|
||||
# encoding: first bit indicates end of number (0 if at end)
|
||||
@@ -67,7 +67,7 @@ proc toNum64(b: TBuffer): int64 =
|
||||
|
||||
proc toNum(b: TBuffer): int32 =
|
||||
# treat first byte different:
|
||||
result = ze(b[0]) and 63
|
||||
result = ze(b[0]).int32 and 63i32
|
||||
var
|
||||
i = 0
|
||||
Shift = 6'i32
|
||||
|
||||
Reference in New Issue
Block a user