mirror of
https://github.com/liyunfan1223/azerothcore-wotlk.git
synced 2026-08-07 15:28:02 +00:00
chore(deps/fmt): Bump fmt to 12.1.0 (#25444)
Co-authored-by: Shauren <shauren.trinity@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -77,10 +77,10 @@ namespace Acore::Impl::Readline
|
||||
void utf8print(void* /*arg*/, std::string_view str)
|
||||
{
|
||||
#if AC_PLATFORM == AC_PLATFORM_WINDOWS
|
||||
fmt::print(str);
|
||||
fmt::print("{}", str);
|
||||
#else
|
||||
{
|
||||
fmt::print(str);
|
||||
fmt::print("{}", str);
|
||||
fflush(stdout);
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -143,6 +143,11 @@ namespace Acore::ChatCommands
|
||||
AC_GAME_API ChatCommandResult TryConsume(ChatHandler const* handler, std::string_view args);
|
||||
};
|
||||
|
||||
inline std::string_view format_as(QuotedString const& qs)
|
||||
{
|
||||
return std::string_view(qs);
|
||||
}
|
||||
|
||||
struct AC_GAME_API AccountIdentifier : Acore::Impl::ChatCommands::ContainerTag
|
||||
{
|
||||
using value_type = uint32;
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
|
||||
#include "GridCell.h"
|
||||
#include "GridReference.h"
|
||||
#include <memory>
|
||||
|
||||
class GridTerrainData;
|
||||
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
#include "CellImpl.h"
|
||||
#include "Chat.h"
|
||||
#include "CommandScript.h"
|
||||
#include <fmt/ranges.h>
|
||||
#include "GameObject.h"
|
||||
#include "GridNotifiers.h"
|
||||
#include "GridNotifiersImpl.h"
|
||||
|
||||
Reference in New Issue
Block a user