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:
Kitzunu 2026-04-14 18:49:13 +02:00 committed by GitHub
parent 472745a944
commit 2a689d7084
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
32 changed files with 12209 additions and 14171 deletions

View file

@ -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

View file

@ -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;

View file

@ -20,6 +20,7 @@
#include "GridCell.h"
#include "GridReference.h"
#include <memory>
class GridTerrainData;

View file

@ -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"