Skip to content

Commit 38a93c7

Browse files
committed
Replace raw string 'C++' with the appropriate macro
1 parent 9ff5696 commit 38a93c7

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

source/iostreams.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2709,7 +2709,7 @@
27092709
\pnum
27102710
\enternote The more obvious use of
27112711
\tcode{ios_base::hex} to specify hexadecimal floating-point format would
2712-
change the meaning of existing well defined programs. C++2003
2712+
change the meaning of existing well defined programs. \CppIII
27132713
gives no meaning to the combination of \tcode{fixed} and
27142714
\tcode{scientific}.\exitnote
27152715

source/lex.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1122,7 +1122,7 @@
11221122
\pnum
11231123
Certain nongraphic characters, the single quote \tcode{'}, the double quote \tcode{"},
11241124
the question mark \tcode{?},\footnote{Using an escape sequence for a question mark
1125-
is supported for compatibility with ISO C++14 and ISO C.}
1125+
is supported for compatibility with ISO \CppXIV and ISO C.}
11261126
and the backslash
11271127
\indextext{backslash~character}%
11281128
\indextext{\idxcode{\textbackslash}|see{backslash}}%

source/regex.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4180,7 +4180,7 @@
41804180
default-constructed instance of their \tcode{traits} template parameter, henceforth
41814181
referred to as \tcode{traits_inst}. This \tcode{traits_inst} object is used to support localization
41824182
of the regular expression; \tcode{basic_regex} member functions shall not call
4183-
any locale dependent C or C++ API, including the formatted string input functions.
4183+
any locale dependent C or \Cpp API, including the formatted string input functions.
41844184
Instead they shall call the appropriate traits member function to achieve the required effect.
41854185

41864186
\pnum

source/templates.tex

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@
117117
units.
118118
A template, a template explicit specialization~(\ref{temp.expl.spec}), and a class
119119
template partial specialization shall not have C linkage. Use of a linkage specification
120-
other than C or C++ with any of these constructs is conditionally-supported, with
120+
other than \tcode{"C"} or \tcode{"C++"} with any of these constructs is
121+
conditionally-supported, with
121122
\impldef{semantics of linkage specification on templates} semantics.
122123
Template definitions shall obey the one-definition rule~(\ref{basic.def.odr}).
123124
\enternote

0 commit comments

Comments
 (0)