*: revendor

This commit is contained in:
Eric Chiang
2017-11-30 16:43:58 -08:00
parent 35063da41e
commit ab102b8189
8 changed files with 5424 additions and 25 deletions

View File

@@ -865,7 +865,7 @@ func (p *textParser) readAny(v reflect.Value, props *Properties) error {
return p.readStruct(fv, terminator)
case reflect.Uint32:
if x, err := strconv.ParseUint(tok.value, 0, 32); err == nil {
fv.SetUint(uint64(x))
fv.SetUint(x)
return nil
}
case reflect.Uint64: