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:
parent
472745a944
commit
2a689d7084
32 changed files with 12209 additions and 14171 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue