(b *buffer, tag int, x uint64)
| 101 | } |
| 102 | |
| 103 | func encodeUint64Opt(b *buffer, tag int, x uint64) { |
| 104 | if x == 0 { |
| 105 | return |
| 106 | } |
| 107 | encodeUint64(b, tag, x) |
| 108 | } |
| 109 | |
| 110 | func encodeInt64(b *buffer, tag int, x int64) { |
| 111 | u := uint64(x) |
no test coverage detected
searching dependent graphs…