From 6a09d2ed5d13f4a6d85e57f371b80932db162ff2 Mon Sep 17 00:00:00 2001 From: Tinny Ng <tng@apache.org> Date: Thu, 18 Oct 2001 15:04:35 +0000 Subject: [PATCH] IDOM: Modify the description for resetDocumentPool. git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@173126 13f79535-47bb-0310-9956-ffa450edef68 --- src/parsers/IDOMParser.hpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/parsers/IDOMParser.hpp b/src/parsers/IDOMParser.hpp index 0b963e517..75bb2a033 100644 --- a/src/parsers/IDOMParser.hpp +++ b/src/parsers/IDOMParser.hpp @@ -143,11 +143,10 @@ public : void reset(); /** Reset the documents vector pool and release all the associated memory - * back to the heap. + * back to the system. * * When parsing a document using an IDOMParser, all memory allocated - * for a DOM tree is associated to the DOM document which will be - * deleted when the parser instance is deleted. + * for a DOM tree is associated to the DOM document. * * If you do multiple parse using the same IDOMParser instance, then * multiple DOM documents will be generated and saved in a vector pool. @@ -157,7 +156,7 @@ public : * If you don't need these DOM documents anymore and don't want to * destroy the IDOMParser instance at this moment, then you can call this method * to reset the document vector pool and release all the allocated memory - * back to the heap. + * back to the system. * * It is an error to call this method if you are in the middle of a * parse (e.g. in the mid of a progressive parse). -- GitLab