From f098e1035b56bacd3a0450f7cf57e583c2ea12f1 Mon Sep 17 00:00:00 2001 From: Braden Ganetsky Date: Wed, 5 Nov 2025 18:07:36 -1000 Subject: [PATCH] [exec.bulk] Fix structured binding presentation Fixes NB US 222-340 (C++26 CD). --- source/exec.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/exec.tex b/source/exec.tex index 994d20d65a..98cbc0e456 100644 --- a/source/exec.tex +++ b/source/exec.tex @@ -4222,7 +4222,7 @@ (Index, State& state, Rcvr& rcvr, Tag, Args&&... args) noexcept -> void requires @\seebelow@ { if constexpr (@\libconcept{same_as}@) { - auto& [shape, f] = state; + auto& [policy, shape, f] = state; constexpr bool nothrow = noexcept(f(auto(shape), args...)); @\exposid{TRY-EVAL}@(rcvr, [&]() noexcept(nothrow) { for (decltype(auto(shape)) i = 0; i < shape; ++i) {