| 208 | |
| 209 | template <class TSink> |
| 210 | void WriteBufferToSink(std::vector<char> const & buffer, TSink & sink) |
| 211 | { |
| 212 | uint32_t const count = static_cast<uint32_t>(buffer.size()); |
| 213 | WriteVarUint(sink, count); |
| 214 | sink.Write(&buffer[0], count); |
| 215 | } |
| 216 | |
| 217 | template <class TSink> |
| 218 | void SaveOuter(EncodeFunT fn, std::vector<m2::PointD> const & points, GeometryCodingParams const & params, TSink & sink) |
no test coverage detected