Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[meta.rel] Add missing noexcept cross-refs for invokable traits #2662

Merged
merged 1 commit into from
Feb 10, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/utilities.tex
Original file line number Diff line number Diff line change
Expand Up @@ -17652,7 +17652,7 @@
\tcode{struct is_nothrow_invocable;} &
\tcode{is_invocable_v<}\br\tcode{Fn, ArgTypes...>} is \tcode{true} and
the expression \tcode{\placeholdernc{INVOKE}(declval<Fn>(), declval<ArgTypes>()...)}
is known not to throw any exceptions &
is known not to throw any exceptions\iref{expr.unary.noexcept} &
\tcode{Fn} and all types in the template parameter pack \tcode{ArgTypes}
shall be complete types, \cv{}~\tcode{void}, or
arrays of unknown bound. \\ \rowsep
Expand All @@ -17662,7 +17662,7 @@
\tcode{struct is_nothrow_invocable_r;} &
\tcode{is_invocable_r_v<}\br\tcode{R, Fn, ArgTypes...>} is \tcode{true} and
the expression \tcode{\placeholdernc{INVOKE}<R>(declval<Fn>(), declval<ArgTypes>()...)}
is known not to throw any exceptions &
is known not to throw any exceptions\iref{expr.unary.noexcept} &
\tcode{Fn}, \tcode{R}, and all types in the template parameter pack \tcode{ArgTypes}
shall be complete types, \cv{}~\tcode{void}, or
arrays of unknown bound. \\
Expand Down