diff options
author | Brad King <brad.king@kitware.com> | 2008-01-28 14:53:21 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-28 14:53:21 (GMT) |
commit | 3d94b3b7170b17f119608a896f2e86cba23b6c5b (patch) | |
tree | 41d27bf69875615d4a7587e2bb84b181039ceb59 /Source/cmExportFileGenerator.h | |
parent | 976b426b2d72f2987b5591bee241f9e2752437f5 (diff) | |
download | CMake-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.h | 2 |
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); |