| 41 | |
| 42 | template <class Value> |
| 43 | void TryGet(std::string_view key, Value & outValue) |
| 44 | { |
| 45 | bool unused = Get(key, outValue); |
| 46 | UNUSED_VALUE(unused); |
| 47 | } |
| 48 | |
| 49 | /// Automatically saves setting to external file |
| 50 | template <class Value> |
no test coverage detected