| 67 | } |
| 68 | |
| 69 | bool Preferences::hasBool(const std::string& key) const { |
| 70 | bool temp; |
| 71 | return optBool(key, temp); |
| 72 | } |
| 73 | |
| 74 | bool Preferences::hasInt32(const std::string& key) const { |
| 75 | int32_t temp; |
nothing calls this directly
no outgoing calls
no test coverage detected