| 631 | } |
| 632 | |
| 633 | MMKV_EXPORT bool enableCompareBeforeSet(void *handle) { |
| 634 | MMKV *kv = static_cast<MMKV *>(handle); |
| 635 | if (kv) { |
| 636 | return kv->enableCompareBeforeSet(); |
| 637 | } |
| 638 | return false; |
| 639 | } |
| 640 | |
| 641 | MMKV_EXPORT bool disableCompareBeforeSet(void *handle) { |
| 642 | MMKV *kv = static_cast<MMKV *>(handle); |
nothing calls this directly
no test coverage detected