| 223 | } |
| 224 | |
| 225 | static void clear_caches() { |
| 226 | string_cache.clear(); |
| 227 | engravings_cache.clear(); |
| 228 | dig_job_cache.clear(); |
| 229 | warm_config = PersistentDataItem(); |
| 230 | damp_config = PersistentDataItem(); |
| 231 | } |
| 232 | |
| 233 | // We use const char * throughout this code instead of std::string to avoid |
| 234 | // having to allocate memory for all the small string literals. This |
no test coverage detected