| 2300 | |
| 2301 | public: |
| 2302 | inline explicit SnappyArrayWriter(char* dst) |
| 2303 | : base_(dst), |
| 2304 | op_(dst), |
| 2305 | op_limit_(dst), |
| 2306 | op_limit_min_slop_(dst) {} // Safe default see invariant. |
| 2307 | |
| 2308 | inline void SetExpectedLength(size_t len) { |
| 2309 | op_limit_ = op_ + len; |
nothing calls this directly
no outgoing calls
no test coverage detected