Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 847f375 commit 241c2e9Copy full SHA for 241c2e9
1 file changed
Doc/ext/extending.tex
@@ -818,10 +818,8 @@ \section{Reference Counts
818
dynamic allocation and deallocation of memory on the heap. In C,
819
this is done using the functions \cfunction{malloc()} and
820
\cfunction{free()}. In \Cpp, the operators \keyword{new} and
821
-\keyword{delete} are used with essentially the same meaning; they are
822
-actually implemented using \cfunction{malloc()} and
823
-\cfunction{free()}, so we'll restrict the following discussion to the
824
-latter.
+\keyword{delete} are used with essentially the same meaning and
+we'll restrict the following discussion to the latter.
825
826
Every block of memory allocated with \cfunction{malloc()} should
827
eventually be returned to the pool of available memory by exactly one
0 commit comments