Skip to content

Commit 7effb6b

Browse files
authored
[exec.spawn.future] Fix indentation
1 parent cab0d01 commit 7effb6b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

source/exec.tex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5325,11 +5325,11 @@
53255325

53265326
template<class E>
53275327
void set_error(E&& e) && noexcept {
5328-
@\exposid{set-complete}@<set_error_t>(std::forward<E>(e));
5328+
@\exposid{set-complete}@<set_error_t>(std::forward<E>(e));
53295329
}
53305330

53315331
void set_stopped() && noexcept {
5332-
@\exposid{set-complete}@<set_stopped_t>();
5332+
@\exposid{set-complete}@<set_stopped_t>();
53335333
}
53345334

53355335
private:
@@ -5467,9 +5467,9 @@
54675467
std::move(this->@\exposid{result}@).visit(
54685468
[&rcvr](auto&& tuple) noexcept {
54695469
if constexpr (!@\libconcept{same_as}@<remove_reference_t<decltype(tuple)>, monostate>) {
5470-
apply([&rcvr](auto cpo, auto&&... vals) {
5471-
cpo(std::move(rcvr), std::move(vals)...);
5472-
}, std::move(tuple));
5470+
apply([&rcvr](auto cpo, auto&&... vals) {
5471+
cpo(std::move(rcvr), std::move(vals)...);
5472+
}, std::move(tuple));
54735473
}
54745474
});
54755475
\end{codeblock}

0 commit comments

Comments
 (0)