Skip to content

Commit e38dbaa

Browse files
committed
Add separate Decoder type for manual decoding
This is largely based on #91.
1 parent 40a9a76 commit e38dbaa

File tree

9 files changed

+846
-426
lines changed

9 files changed

+846
-426
lines changed

deserializer_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func (d *testDeserializer) Uint32(v uint32) error {
6969
}
7070

7171
func (d *testDeserializer) Int32(v int32) error {
72-
return d.add(int(v))
72+
return d.add(v)
7373
}
7474

7575
func (d *testDeserializer) Uint64(v uint64) error {

0 commit comments

Comments
 (0)