(v int32)
| 253 | } |
| 254 | |
| 255 | func (w *compactWriter) WriteInt32(v int32) error { |
| 256 | return w.writeVarint(int64(v)) |
| 257 | } |
| 258 | |
| 259 | func (w *compactWriter) WriteInt64(v int64) error { |
| 260 | return w.writeVarint(v) |
nothing calls this directly
no test coverage detected