From c25d800a03a0650833978c09f5e9df7e1c320cfc Mon Sep 17 00:00:00 2001 From: Eisenwave Date: Sun, 20 Oct 2024 19:27:47 +0200 Subject: [PATCH] [basic.stc.dynamic] Fix definition/explanation of dynamic storage duration --- source/basic.tex | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/basic.tex b/source/basic.tex index 9524265f81..aa087d54e4 100644 --- a/source/basic.tex +++ b/source/basic.tex @@ -3989,15 +3989,15 @@ \rSec3[basic.stc.dynamic]{Dynamic storage duration}% \rSec4[basic.stc.dynamic.general]{General}% -\indextext{storage duration!dynamic|(} \pnum -Objects can be created dynamically during program -execution\iref{intro.execution}, using +Objects with \defnadj{dynamic}{storage duration} are created using \indextext{\idxcode{new}}% -\grammarterm{new-expression}{s}\iref{expr.new}, and destroyed using +\grammarterm{new-expression}{s}\iref{expr.new} and destroyed using \indextext{\idxcode{delete}}% -\grammarterm{delete-expression}{s}\iref{expr.delete}. A \Cpp{} implementation +\grammarterm{delete-expression}{s}\iref{expr.delete}, +or implicitly created\iref{intro.object}. +A \Cpp{} implementation provides access to, and management of, dynamic storage via the global \defnx{allocation functions}{allocation function} \tcode{\keyword{operator} \keyword{new}} and