Skip to content

Commit 3d05dae

Browse files
author
Dawn Perchik
committed
Un-\term "allocation function" and "deallocation function" (#707)
Fixes #707.
1 parent 196a629 commit 3d05dae

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

source/expressions.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3164,7 +3164,7 @@
31643164

31653165
\pnum
31663166
A \grammarterm{new-expression} may obtain storage for the object by calling an
3167-
\term{allocation function}~(\ref{basic.stc.dynamic.allocation}). If
3167+
allocation function~(\ref{basic.stc.dynamic.allocation}). If
31683168
the \grammarterm{new-expression} terminates by throwing an exception, it
31693169
may release storage by calling a deallocation
31703170
function~(\ref{basic.stc.dynamic.deallocation}). If the allocated type
@@ -3591,7 +3591,7 @@
35913591
\indextext{function!deallocation}%
35923592
\indextext{deallocation|see{\tcode{delete}}}%
35933593
\indextext{\idxcode{delete}}%
3594-
\term{deallocation function}~(\ref{basic.stc.dynamic.deallocation}).
3594+
deallocation function~(\ref{basic.stc.dynamic.deallocation}).
35953595
\end{itemize}
35963596

35973597
Otherwise, it is unspecified whether the deallocation function will be

source/special.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1251,7 +1251,7 @@
12511251
\indextext{\idxcode{delete}}%
12521252
When an object is deleted with a
12531253
\grammarterm{delete-expression}~(\ref{expr.delete}),
1254-
a \term{deallocation function}
1254+
a deallocation function
12551255
\indextext{function!deallocation}%
12561256
(\tcode{operator delete()}
12571257
\indextext{\idxcode{operator delete}}%

source/support.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1566,7 +1566,7 @@
15661566
\pnum
15671567
\effects
15681568
The
1569-
\term{allocation function}~(\ref{basic.stc.dynamic.allocation})
1569+
allocation function~(\ref{basic.stc.dynamic.allocation})
15701570
called by a
15711571
\grammarterm{new-expression}~(\ref{expr.new})
15721572
to allocate
@@ -1672,7 +1672,7 @@
16721672
\pnum
16731673
\effects
16741674
The
1675-
\term{deallocation function}~(\ref{basic.stc.dynamic.deallocation})
1675+
deallocation function~(\ref{basic.stc.dynamic.deallocation})
16761676
called by a
16771677
\grammarterm{delete-expression}
16781678
to render the value of \tcode{ptr} invalid.
@@ -1754,7 +1754,7 @@
17541754
\pnum
17551755
\effects
17561756
The
1757-
\term{deallocation function}~(\ref{basic.stc.dynamic.deallocation})
1757+
deallocation function~(\ref{basic.stc.dynamic.deallocation})
17581758
called by the implementation
17591759
to render the value of \tcode{ptr} invalid
17601760
when the constructor invoked from a nothrow
@@ -1789,7 +1789,7 @@
17891789
\pnum
17901790
\effects
17911791
The
1792-
\term{allocation function}~(\ref{basic.stc.dynamic.allocation})
1792+
allocation function~(\ref{basic.stc.dynamic.allocation})
17931793
called by the array form of a
17941794
\grammarterm{new-expression}~(\ref{expr.new})
17951795
to allocate \tcode{size} bytes of storage suitably aligned to represent any array
@@ -1872,7 +1872,7 @@
18721872
\pnum
18731873
\effects
18741874
The
1875-
\term{deallocation function}~(\ref{basic.stc.dynamic.deallocation})
1875+
deallocation function~(\ref{basic.stc.dynamic.deallocation})
18761876
called by the array form of a
18771877
\grammarterm{delete-expression}
18781878
to render the value of \tcode{ptr} invalid.
@@ -1933,7 +1933,7 @@
19331933
\pnum
19341934
\effects
19351935
The
1936-
\term{deallocation function}~(\ref{basic.stc.dynamic.deallocation})
1936+
deallocation function~(\ref{basic.stc.dynamic.deallocation})
19371937
called by the implementation
19381938
to render the value of \tcode{ptr} invalid
19391939
when the constructor invoked from a nothrow

0 commit comments

Comments
 (0)