COMP: Add virtual destructor to cmExportFileGenerator to avoid warnings about other virtual functions.

This commit is contained in:
Brad King 2008-01-28 09:53:21 -05:00
parent 976b426b2d
commit 3d94b3b717
1 changed files with 2 additions and 0 deletions

View File

@ -30,6 +30,8 @@
class cmExportFileGenerator
{
public:
virtual ~cmExportFileGenerator() {}
/** Set the full path to the export file to generate. */
void SetExportFile(const char* mainFile);