| 328 | |
| 329 | template<typename It> |
| 330 | void InsertBackUnsigned(It cur, It end) { |
| 331 | for (; cur != end; ++cur) { |
| 332 | PushBackUnsigned(*cur); |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | void PushBackSigned(int32_t value) { |
| 337 | EncodeSignedLeb128(data_, value); |
nothing calls this directly
no outgoing calls
no test coverage detected