| 646 | } |
| 647 | |
| 648 | MMKV_EXPORT bool enableCompareBeforeSet(void *handle) { |
| 649 | MMKV *kv = static_cast<MMKV *>(handle); |
| 650 | if (kv) { |
| 651 | return kv->enableCompareBeforeSet(); |
| 652 | } |
| 653 | return false; |
| 654 | } |
| 655 | |
| 656 | MMKV_EXPORT bool disableCompareBeforeSet(void *handle) { |
| 657 | MMKV *kv = static_cast<MMKV *>(handle); |
nothing calls this directly
no test coverage detected