Remove another lie.

This commit is contained in:
Michael W. Hudson 2003-02-06 18:38:11 +00:00
parent 847f37543f
commit 241c2e9692

View file

@ -818,10 +818,8 @@ In languages like C or \Cpp, the programmer is responsible for
dynamic allocation and deallocation of memory on the heap. In C, dynamic allocation and deallocation of memory on the heap. In C,
this is done using the functions \cfunction{malloc()} and this is done using the functions \cfunction{malloc()} and
\cfunction{free()}. In \Cpp, the operators \keyword{new} and \cfunction{free()}. In \Cpp, the operators \keyword{new} and
\keyword{delete} are used with essentially the same meaning; they are \keyword{delete} are used with essentially the same meaning and
actually implemented using \cfunction{malloc()} and we'll restrict the following discussion to the latter.
\cfunction{free()}, so we'll restrict the following discussion to the
latter.
Every block of memory allocated with \cfunction{malloc()} should Every block of memory allocated with \cfunction{malloc()} should
eventually be returned to the pool of available memory by exactly one eventually be returned to the pool of available memory by exactly one