diff --git a/Bigfoot/Sources/System/Include/System/UUID/UUID.hpp b/Bigfoot/Sources/System/Include/System/UUID/UUID.hpp index 1b0dfa9..9014a2a 100644 --- a/Bigfoot/Sources/System/Include/System/UUID/UUID.hpp +++ b/Bigfoot/Sources/System/Include/System/UUID/UUID.hpp @@ -125,7 +125,7 @@ struct std::formatter template auto format(const Bigfoot::UUID& p_uuid, FormatContext& ctx) const { - return std::format_to(ctx.out(), "{}", static_cast(p_uuid)); + return std::format_to(ctx.out(), "{}", p_uuid.ToString()); } };