mark functions with CM_OVERRIDE

This commit is contained in:
Daniel Pfeifer
2016-06-27 21:25:27 +02:00
parent 9e2d6f0c4d
commit a7a9239096
216 changed files with 1124 additions and 1033 deletions
+2 -2
View File
@@ -26,10 +26,10 @@ public:
* Construct generator
*/
cmCPackTarCompressGenerator();
virtual ~cmCPackTarCompressGenerator();
~cmCPackTarCompressGenerator() CM_OVERRIDE;
protected:
virtual const char* GetOutputExtension() { return ".tar.Z"; }
const char* GetOutputExtension() CM_OVERRIDE { return ".tar.Z"; }
};
#endif