Skip to content

Commit 4efd31f

Browse files
committed
adding missing semicolon
1 parent 19699b7 commit 4efd31f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lang/cpp26/structured_bindings_can_introduce_a_pack.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ auto dot_product(P p, Q q) {
9090
return std::apply([&](auto... p_elems){
9191
return std::apply([&](auto... q_elems){
9292
return (... + (p_elems * q_elems));
93-
}, q)
93+
}, q);
9494
}, p);
9595
}
9696
```

0 commit comments

Comments
 (0)