Skip to content

Commit b0fd079

Browse files
jensmaurertkoeppe
authored andcommitted
Replace \defnx{a}{a} by \defn{a}
1 parent 9108b30 commit b0fd079

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

source/basic.tex

+7-7
Original file line numberDiff line numberDiff line change
@@ -2794,7 +2794,7 @@
27942794

27952795
\pnum
27962796
\indextext{storage~duration|(}%
2797-
The \defnx{storage duration}{storage duration} is the property of an object that defines the minimum
2797+
The \defn{storage duration} is the property of an object that defines the minimum
27982798
potential lifetime of the storage containing the object. The storage
27992799
duration is determined by the construct used to create the object and is
28002800
one of the following:
@@ -3732,7 +3732,7 @@
37323732
For each of the standard signed integer types,
37333733
there exists a corresponding (but different)
37343734
\indextext{type!standard~unsigned~integer}%
3735-
\defnx{standard unsigned integer type}{standard unsigned integer type}:
3735+
\defn{standard unsigned integer type}:
37363736
\indextext{type!\idxcode{unsigned char}}%
37373737
\indextext{type!\idxcode{unsigned short}}%
37383738
\indextext{type!\idxcode{unsigned int}}%
@@ -3751,7 +3751,7 @@
37513751
\indextext{type!unsigned~integer}%
37523752
Likewise, for each of the extended signed integer types there exists a
37533753
corresponding
3754-
\defnx{extended unsigned integer type}{extended unsigned integer type} with the same amount of storage and alignment
3754+
\defn{extended unsigned integer type} with the same amount of storage and alignment
37553755
requirements. The standard and extended unsigned integer types are
37563756
collectively called \defnx{unsigned integer types}{unsigned integer type}. The range of non-negative
37573757
values of a signed integer type is a subrange of the corresponding
@@ -3819,7 +3819,7 @@
38193819
\indextext{signed integer representation!ones' complement}%
38203820
\indextext{signed integer representation!two's complement}%
38213821
\indextext{signed integer representation!signed magnitude}%
3822-
\defnx{integer type}{integer type}. The representations of integral types shall
3822+
\defn{integer type}. The representations of integral types shall
38233823
define values by use of a pure binary numeration system.\footnote{A positional
38243824
representation for integers that uses the binary digits 0
38253825
and 1, in which the values represented by successive bits are additive,
@@ -3907,8 +3907,8 @@
39073907
\defnx{references}{reference} to objects or functions of a given
39083908
type,~\ref{dcl.ref}. There are two types of references:
39093909
\begin{itemize}
3910-
\item \defnx{lvalue reference}{lvalue reference}
3911-
\item \defnx{rvalue reference}{rvalue reference}
3910+
\item \defn{lvalue reference}
3911+
\item \defn{rvalue reference}
39123912
\end{itemize}
39133913

39143914
\item
@@ -4294,7 +4294,7 @@
42944294

42954295
\pnum
42964296
\indextext{alignment!fundamental}%
4297-
A \defnx{fundamental alignment}{fundamental alignment} is represented by an alignment
4297+
A \defn{fundamental alignment} is represented by an alignment
42984298
less than or equal to the greatest alignment supported by the implementation in
42994299
all contexts, which is equal to
43004300
\tcode{alignof(std::max_align_t)}~(\ref{support.types}).

source/expressions.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -2530,7 +2530,7 @@
25302530
temporary is created, no copy is made, and
25312531
constructors~(\ref{class.ctor}) or conversion
25322532
functions~(\ref{class.conv}) are not called.\footnote{This
2533-
is sometimes referred to as a \defnx{type pun}{type pun}.}
2533+
is sometimes referred to as a \defn{type pun}.}
25342534

25352535
\rSec2[expr.const.cast]{Const cast}
25362536

source/intro.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -1409,7 +1409,7 @@
14091409
as described above, satisfy the resulting constraints as imposed here. \end{note}
14101410

14111411
\pnum
1412-
Two actions are \defnx{potentially concurrent}{potentially concurrent} if
1412+
Two actions are \defn{potentially concurrent} if
14131413
\begin{itemize}
14141414
\item they are performed by different threads, or
14151415
\item they are unsequenced, at least one is performed by a signal handler, and

0 commit comments

Comments
 (0)