Skip to content

Commit 2847e62

Browse files
k3DWtkoeppe
authored andcommitted
[exec.bulk] Fix structured binding presentation
Fixes NB US 222-340 (C++26 CD).
1 parent 23c89d4 commit 2847e62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/exec.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4222,7 +4222,7 @@
42224222
(Index, State& state, Rcvr& rcvr, Tag, Args&&... args) noexcept
42234223
-> void requires @\seebelow@ {
42244224
if constexpr (@\libconcept{same_as}@<Tag, set_value_t>) {
4225-
auto& [shape, f] = state;
4225+
auto& [policy, shape, f] = state;
42264226
constexpr bool nothrow = noexcept(f(auto(shape), args...));
42274227
@\exposid{TRY-EVAL}@(rcvr, [&]() noexcept(nothrow) {
42284228
for (decltype(auto(shape)) i = 0; i < shape; ++i) {

0 commit comments

Comments
 (0)