mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-23 05:36:23 +00:00
feat(Deps/Fmt): update fmt lib to 10.1.1 (#17643)
This commit is contained in:
@@ -19,6 +19,7 @@
|
||||
#define PacketUtilities_h__
|
||||
|
||||
#include "ByteBuffer.h"
|
||||
#include "StringFormat.h"
|
||||
#include "Tuples.h"
|
||||
#include <string_view>
|
||||
|
||||
@@ -295,4 +296,13 @@ namespace WorldPackets
|
||||
}
|
||||
}
|
||||
|
||||
#endif // PacketUtilities_h__
|
||||
template<std::size_t MaxBytesWithoutNullTerminator, typename... Validators>
|
||||
struct fmt::formatter<WorldPackets::String<MaxBytesWithoutNullTerminator, Validators...>> : fmt::formatter<std::string_view>
|
||||
{
|
||||
auto format(WorldPackets::String<MaxBytesWithoutNullTerminator, Validators...> const& str, format_context& ctx) const
|
||||
{
|
||||
return fmt::formatter<std::string_view>::format(std::string_view(str), ctx);
|
||||
}
|
||||
};
|
||||
|
||||
#endif // PacketUtilities_h__
|
||||
Reference in New Issue
Block a user