From 72ec4cdc7f09e33290478c5e0e354a43fd8289e9 Mon Sep 17 00:00:00 2001 From: Ian Petersen Date: Thu, 13 Aug 2026 14:57:33 -0400 Subject: [PATCH] Include __just.hpp from __when_all.hpp While analysing stdexec's internal dependency structure, I discovered that `__when_all.hpp` depends on `stdexec::just` but doesn't incude `__just.hpp`, breaking self-containment. This diff fixes that. --- include/stdexec/__detail/__when_all.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/stdexec/__detail/__when_all.hpp b/include/stdexec/__detail/__when_all.hpp index 0b8867f79..305bf4f57 100644 --- a/include/stdexec/__detail/__when_all.hpp +++ b/include/stdexec/__detail/__when_all.hpp @@ -33,6 +33,7 @@ import stdexec; # include "__domain.hpp" # include "__env.hpp" # include "__into_variant.hpp" +# include "__just.hpp" # include "__meta.hpp" # include "__optional.hpp" # include "__schedulers.hpp"