(b []byte, p unsafe.Pointer, flags flags)
| 30 | } |
| 31 | |
| 32 | func decodeInt(b []byte, p unsafe.Pointer, flags flags) (int, error) { |
| 33 | v, n, err := decodeVarint(b) |
| 34 | *(*int)(p) = int(flags.int64(v)) |
| 35 | return n, err |
| 36 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…