| 65 | } |
| 66 | |
| 67 | void Preferences::putInt32(const std::string& key, int32_t value) { |
| 68 | std::string bundle_key = get_bundle_key(namespace_, key); |
| 69 | return preferences.putInt32(bundle_key, value); |
| 70 | } |
| 71 | |
| 72 | void Preferences::putInt64(const std::string& key, int64_t value) { |
| 73 | std::string bundle_key = get_bundle_key(namespace_, key); |
nothing calls this directly
no test coverage detected