diff options
| author | 2024-06-07 14:12:59 +0100 | |
|---|---|---|
| committer | 2024-06-07 14:12:59 +0100 | |
| commit | b918f4906a21d6f37de5c7d503c8da1770df966d (patch) | |
| tree | cb061bf6249cc9a0ce86fcc646a157edd058db76 /src/configparser.cpp | |
| parent | Merge branch 'insp4' into master. (diff) | |
Always use fmtlib directly.
Diffstat (limited to 'src/configparser.cpp')
| -rw-r--r-- | src/configparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configparser.cpp b/src/configparser.cpp index 224170bff..ec970b581 100644 --- a/src/configparser.cpp +++ b/src/configparser.cpp @@ -521,7 +521,7 @@ bool ParseStack::ParseFile(const std::string& path, int flags, const std::string if (flags & FLAG_MISSING_OKAY) return true; - throw CoreException(INSP_FORMAT("Could not read \"{}\" for include: {}", path, strerror(errno))); + throw CoreException(fmt::format("Could not read \"{}\" for include: {}", path, strerror(errno))); } reading.push_back(path); |
