summaryrefslogtreecommitdiffstats
path: root/Source/cmExportFileGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-01-28 14:53:21 (GMT)
committerBrad King <brad.king@kitware.com>2008-01-28 14:53:21 (GMT)
commit3d94b3b7170b17f119608a896f2e86cba23b6c5b (patch)
tree41d27bf69875615d4a7587e2bb84b181039ceb59 /Source/cmExportFileGenerator.h
parent976b426b2d72f2987b5591bee241f9e2752437f5 (diff)
downloadCMake-3d94b3b7170b17f119608a896f2e86cba23b6c5b.zip
CMake-3d94b3b7170b17f119608a896f2e86cba23b6c5b.tar.gz
CMake-3d94b3b7170b17f119608a896f2e86cba23b6c5b.tar.bz2
COMP: Add virtual destructor to cmExportFileGenerator to avoid warnings about other virtual functions.
Diffstat (limited to 'Source/cmExportFileGenerator.h')
-rw-r--r--Source/cmExportFileGenerator.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmExportFileGenerator.h b/Source/cmExportFileGenerator.h
index 22592d7..92b6896 100644
--- a/Source/cmExportFileGenerator.h
+++ b/Source/cmExportFileGenerator.h
@@ -30,6 +30,8 @@
class cmExportFileGenerator
{
public:
+ virtual ~cmExportFileGenerator() {}
+
/** Set the full path to the export file to generate. */
void SetExportFile(const char* mainFile);