Skip to content

Commit 5f8b698

Browse files
committed
[task.promise] Remove trailing semicolons in comments in examples
Fixes NB US 259-380 (C++26 CD).
1 parent 322d380 commit 5f8b698

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/exec.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7431,9 +7431,9 @@
74317431
void uncaught_exception();
74327432
coroutine_handle<> unhandled_stopped();
74337433

7434-
void return_void(); // present only if \tcode{is_void_v<T>} is \tcode{true};
7434+
void return_void(); // present only if \tcode{is_void_v<T>} is \tcode{true}
74357435
template<class V>
7436-
void return_value(V&& value); // present only if \tcode{is_void_v<T>} is \tcode{false};
7436+
void return_value(V&& value); // present only if \tcode{is_void_v<T>} is \tcode{false}
74377437

74387438
template<class E>
74397439
@\unspec@ yield_value(with_error<E> error);
@@ -7456,7 +7456,7 @@
74567456
allocator_type @\exposidnc{alloc}@; // \expos
74577457
stop_source_type @\exposidnc{source}@; // \expos
74587458
stop_token_type @\exposidnc{token}@; // \expos
7459-
optional<T> @\exposidnc{result}@; // \expos; present only if \tcode{is_void_v<T>} is \tcode{false};
7459+
optional<T> @\exposidnc{result}@; // \expos; present only if \tcode{is_void_v<T>} is \tcode{false}
74607460
@\exposidnc{error-variant}@ @\exposidnc{errors}@; // \expos
74617461
};
74627462
}

0 commit comments

Comments
 (0)