| 38 | class FlatArrayCodec { |
| 39 | public: |
| 40 | FlatArrayCodec(std::string* buffer, uint16_t col_cnt) |
| 41 | : buffer_(buffer), |
| 42 | col_cnt_(col_cnt), |
| 43 | cur_cnt_(0), |
| 44 | datas_(col_cnt_), |
| 45 | modify_times_(0) {} |
| 46 | |
| 47 | FlatArrayCodec(std::string* buffer, uint16_t col_cnt, int modify_times) |
| 48 | : buffer_(buffer), |
nothing calls this directly
no outgoing calls
no test coverage detected