Skip to content

[class, utility] Clarify 'cv-void class members' and make spelling more consistent #402

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

Merged
merged 2 commits into from
Nov 19, 2015
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion source/classes.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1140,7 +1140,7 @@
\indextext{definition!static member}%
The declaration of a \tcode{static} data member in its class definition
is not a definition and may be of an incomplete type other than
cv-qualified \tcode{void}. The definition for a \tcode{static} data
\cv\ \tcode{void}. The definition for a \tcode{static} data
member shall appear in a namespace scope enclosing the member's class
definition.
\indextext{operator~use!scope~resolution}%
Expand Down
4 changes: 2 additions & 2 deletions source/utilities.tex
Original file line number Diff line number Diff line change
Expand Up @@ -8564,7 +8564,7 @@
\pnum
The simple call wrapper shall
define two nested types named \tcode{argument_type} and \tcode{result_type} as synonyms
for \tcode{\cv{} T*} and \tcode{Ret}, respectively,
for \cv{} \tcode{T*} and \tcode{Ret}, respectively,
when \tcode{pm} is
a pointer to member function with cv-qualifier \textit{cv} and taking no
arguments, where \textit{Ret} is \tcode{pm}'s return type.
Expand All @@ -8573,7 +8573,7 @@
The simple call wrapper shall
define three nested types named \tcode{first_argument_type},
\tcode{second_argument_type}, and \tcode{result_type} as synonyms
for \tcode{\cv{} T*}, \tcode{T1}, and \tcode{Ret}, respectively,
for \cv{} \tcode{T*}, \tcode{T1}, and \tcode{Ret}, respectively,
when \tcode{pm} is
a pointer to member function with cv-qualifier \textit{cv} and taking
one argument of type \tcode{T1}, where \textit{Ret} is \tcode{pm}'s return type.
Expand Down