| 642 | #endif // MMKV_HAS_CPP20 |
| 643 | |
| 644 | void MiniPBCoder::decodeMap(MMKVMap &dic, const MMBuffer &oData, size_t position) { |
| 645 | MiniPBCoder oCoder(&oData); |
| 646 | oCoder.decodeOneMap(dic, position, false); |
| 647 | } |
| 648 | |
| 649 | void MiniPBCoder::greedyDecodeMap(MMKVMap &dic, const MMBuffer &oData, size_t position) { |
| 650 | MiniPBCoder oCoder(&oData); |
nothing calls this directly
no test coverage detected