From e59382dd60b1dc2f854fe82f067ebb0a273770db Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Tue, 12 Aug 2025 22:39:08 -0500 Subject: [PATCH] [keel] Address undefined behavior --- src/olympic/keel/include/keel/typeconv.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/olympic/keel/include/keel/typeconv.hpp b/src/olympic/keel/include/keel/typeconv.hpp index 971bf223..62fc0752 100644 --- a/src/olympic/keel/include/keel/typeconv.hpp +++ b/src/olympic/keel/include/keel/typeconv.hpp @@ -214,7 +214,7 @@ class Converter { } [[nodiscard]] BaseConverter const &converter() const noexcept { - return *m_buff.data(); + return *std::launder(m_buff.data()); } };