aboutsummaryrefslogtreecommitdiff
path: root/src/configparser.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2024-08-22 10:26:43 +0100
committerGravatar Sadie Powell2024-08-22 11:12:52 +0100
commit6b123d4bc61c2db8e379dd5e681834c4053e661d (patch)
tree77621bb30f54b0c444e31a78b2c5c9a67955b723 /src/configparser.cpp
parentMerge branch 'insp4' into master. (diff)
Use C++20 <format> instead of fmtlib when available.
Diffstat (limited to 'src/configparser.cpp')
-rw-r--r--src/configparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configparser.cpp b/src/configparser.cpp
index 437a4cced..42a540abe 100644
--- a/src/configparser.cpp
+++ b/src/configparser.cpp
@@ -525,7 +525,7 @@ bool ParseStack::ParseFile(const std::string& path, int flags, const std::string
if (flags & FLAG_MISSING_OKAY)
return true;
- throw CoreException(fmt::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);