| 40 | } |
| 41 | |
| 42 | bool Preferences::optBool(const std::string& key, bool& out) const { |
| 43 | std::string bundle_key = get_bundle_key(namespace_, key); |
| 44 | return preferences.optBool(bundle_key, out); |
| 45 | } |
| 46 | |
| 47 | bool Preferences::optInt32(const std::string& key, int32_t& out) const { |
| 48 | std::string bundle_key = get_bundle_key(namespace_, key); |
nothing calls this directly
no test coverage detected