Skip to content
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
8 changes: 4 additions & 4 deletions source/memory.tex
Original file line number Diff line number Diff line change
Expand Up @@ -5735,10 +5735,10 @@
\begin{itemdescr}
\pnum
\returns
A derived class shall implement this function to return \tcode{true} if memory allocated from \keyword{this} can be deallocated from \tcode{other} and vice-versa,
A derived class shall implement this function to return \tcode{true} if memory allocated from \tcode{*this} can be deallocated from \tcode{other} and vice-versa,
otherwise \tcode{false}.
\begin{note}
It is possible that the most-derived type of \tcode{other} does not match the type of \keyword{this}.
It is possible that the most-derived type of \tcode{other} does not match the type of \tcode{*this}.
For a derived class \tcode{D}, an implementation of this function
can immediately return \tcode{false}
if \tcode{dynamic_cast<const D*>(\&other) == nullptr}.
Expand Down Expand Up @@ -6607,8 +6607,8 @@
\pnum
\begin{note}
The memory is released back to \tcode{upstream_rsrc}
even if some blocks that were allocated from \keyword{this}
have not been deallocated from \keyword{this}.
even if some blocks that were allocated from \tcode{*this}
have not been deallocated from \tcode{*this}.
\end{note}
\end{itemdescr}

Expand Down
2 changes: 1 addition & 1 deletion source/regex.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1260,7 +1260,7 @@
\begin{itemdescr}
\pnum
\effects
Imbues \keyword{this} with a copy of the
Imbues \tcode{*this} with a copy of the
locale \tcode{loc}.
\begin{note}
Calling \tcode{imbue} with a
Expand Down