[svn-r3199]

Purpose: bug fix

Description:
	I found a couple of places where virtual destructors were missing
	and could cause small memory leaks.  Also, some destructors were
	not virtual when they should be.

Solution:
	- added virtual destructors, which also free dynamically allocated
	  memory
	- added virtual to several destructors
	- also, fixed several typos

Platforms tested:
	Solaris 2.7 (arabica)
This commit is contained in:
Binh-Minh Ribler
2000-12-23 08:17:32 -05:00
parent 45c5dd949f
commit d24bacb8a4
29 changed files with 146 additions and 226 deletions

View File

@@ -199,7 +199,7 @@ void DataSet::p_close() const
// a member function so it can be template to work around that problem.
DataSet::~DataSet()
{
// The dataset id will be closed properly
// The dataset id will be closed properly
resetIdComponent( this );
}