| 1752 | // ---- auto expire ---- |
| 1753 | |
| 1754 | uint32_t MMKV::getCurrentTimeInSecond() { |
| 1755 | auto time = ::time(nullptr); |
| 1756 | return static_cast<uint32_t>(time); |
| 1757 | } |
| 1758 | |
| 1759 | bool MMKV::doFullWriteBack(MMKVVector &&vec) { |
| 1760 | auto preparedData = prepareEncode(std::move(vec)); |
nothing calls this directly
no outgoing calls
no test coverage detected