diff options
author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2024-09-03 12:59:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-03 07:59:37 -0300 |
commit | de2bcbdabf19cb05682b2087b42726ee2325fe8e (patch) | |
tree | 79b0cbc222519b7c283938daecbbce0c4b2a29a6 /src/common/Configuration/Config.cpp | |
parent | f6fd978a7a871ff91ad67e60284c5195e227dcd5 (diff) |
refactor(Core/Misc): Acore::StringFormat to fmt format (#19838)
refactor(Core/Utilities): Acore::StringFormat to fmt format
* closes https://github.com/azerothcore/azerothcore-wotlk/issues/10356
Diffstat (limited to 'src/common/Configuration/Config.cpp')
-rw-r--r-- | src/common/Configuration/Config.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/Configuration/Config.cpp b/src/common/Configuration/Config.cpp index 2261c14b10..5f653fa968 100644 --- a/src/common/Configuration/Config.cpp +++ b/src/common/Configuration/Config.cpp @@ -65,7 +65,7 @@ namespace template<typename Format, typename... Args> inline void PrintError(std::string_view filename, Format&& fmt, Args&& ... args) { - std::string message = Acore::StringFormatFmt(std::forward<Format>(fmt), std::forward<Args>(args)...); + std::string message = Acore::StringFormat(std::forward<Format>(fmt), std::forward<Args>(args)...); if (IsAppConfig(filename)) { @@ -117,7 +117,7 @@ namespace return false; } - throw ConfigException(Acore::StringFormatFmt("Config::LoadFile: Failed open {}file '{}'", isOptional ? "optional " : "", file)); + throw ConfigException(Acore::StringFormat("Config::LoadFile: Failed open {}file '{}'", isOptional ? "optional " : "", file)); } uint32 count = 0; @@ -144,7 +144,7 @@ namespace // read line error if (!in.good() && !in.eof()) - throw ConfigException(Acore::StringFormatFmt("> Config::LoadFile: Failure to read line number {} in file '{}'", lineNumber, file)); + throw ConfigException(Acore::StringFormat("> Config::LoadFile: Failure to read line number {} in file '{}'", lineNumber, file)); // remove whitespace in line line = Acore::String::Trim(line, in.getloc()); @@ -187,7 +187,7 @@ namespace return false; } - throw ConfigException(Acore::StringFormatFmt("Config::LoadFile: Empty file '{}'", file)); + throw ConfigException(Acore::StringFormat("Config::LoadFile: Empty file '{}'", file)); } // Add correct keys if file load without errors |