| 23 | |
| 24 | template <typename... Args> |
| 25 | static void FatalError(const char* fmt, const Args&... args) |
| 26 | { |
| 27 | std::string strMessage = tfm::format(fmt, args...); |
| 28 | SetMiscWarning(Untranslated(strMessage)); |
| 29 | LogPrintf("*** %s\n", strMessage); |
| 30 | AbortError(_("A fatal internal error occurred, see debug.log for details")); |
| 31 | StartShutdown(); |
| 32 | } |
| 33 | |
| 34 | BaseIndex::DB::DB(const fs::path& path, size_t n_cache_size, bool f_memory, bool f_wipe, bool f_obfuscate) : |
| 35 | CDBWrapper(path, n_cache_size, f_memory, f_wipe, f_obfuscate) |
no test coverage detected