From 9bea52973b760af2303a887a9d11eb462f35109e Mon Sep 17 00:00:00 2001 From: Romain BOULLARD Date: Sat, 16 May 2026 17:48:43 +0200 Subject: [PATCH] Maintenance --- Bigfoot/Sources/System/Include/System/UUID/UUID.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } };