[keel] Address undefined behavior

This commit is contained in:
2025-08-12 22:39:08 -05:00
parent 3006e77ef3
commit e59382dd60

View File

@@ -214,7 +214,7 @@ class Converter {
} }
[[nodiscard]] [[nodiscard]]
BaseConverter const &converter() const noexcept { BaseConverter const &converter() const noexcept {
return *m_buff.data(); return *std::launder(m_buff.data());
} }
}; };