From cc7a34fd5a3d74bb39bc96adb541e23c8f2c78fe Mon Sep 17 00:00:00 2001 From: Mathis Logemann <13556116+mathisloge@users.noreply.github.com> Date: Thu, 26 Feb 2026 22:18:24 +1300 Subject: [PATCH] Add missing include for std::launder std::launder is defined in and is missing here. Might get conflicts with clang compiler --- include/stdexec/__detail/__utility.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/stdexec/__detail/__utility.hpp b/include/stdexec/__detail/__utility.hpp index 4ab4699d7..4959f381b 100644 --- a/include/stdexec/__detail/__utility.hpp +++ b/include/stdexec/__detail/__utility.hpp @@ -23,6 +23,7 @@ #include #include #include // IWYU pragma: keep for std::start_lifetime_as +#include // IWYU pragma: keep for std::launder #include // IWYU pragma: keep for std::unreachable STDEXEC_PRAGMA_PUSH()