From 6b123d4bc61c2db8e379dd5e681834c4053e661d Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 22 Aug 2024 10:26:43 +0100 Subject: Use C++20 instead of fmtlib when available. --- src/configparser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/configparser.cpp') 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); -- cgit v1.3.1-10-gc9f91