aboutsummaryrefslogtreecommitdiff
path: root/src/common/Utilities/StringFormat.h
diff options
context:
space:
mode:
authorWinfidonarleyan <dowlandtop@yandex.com>2020-09-11 17:54:07 +0700
committerShauren <shauren.trinity@gmail.com>2020-09-11 19:25:35 +0200
commit9d96e4852a4a25fdc323f656e24034fa1a280826 (patch)
tree01cc696872977f992796b87407cf41aa59532876 /src/common/Utilities/StringFormat.h
parent6ed1810abcf212b2cf04e5c6325e185ec4f3c05a (diff)
Dep/fmt: update fmt library to 7.0.3
Diffstat (limited to 'src/common/Utilities/StringFormat.h')
-rw-r--r--src/common/Utilities/StringFormat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Utilities/StringFormat.h b/src/common/Utilities/StringFormat.h
index ba0adacc888..da1615575a4 100644
--- a/src/common/Utilities/StringFormat.h
+++ b/src/common/Utilities/StringFormat.h
@@ -30,7 +30,7 @@ namespace Trinity
{
return fmt::sprintf(std::forward<Format>(fmt), std::forward<Args>(args)...);
}
- catch (const fmt::FormatError& formatError)
+ catch (const fmt::format_error& formatError)
{
std::string error = "An error occurred formatting string \"" + std::string(fmt) + "\" : " + std::string(formatError.what());
return error;