mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-22 06:59:01 -06:00
mark functions with CM_OVERRIDE
This commit is contained in:
@@ -29,8 +29,8 @@ public:
|
||||
/**
|
||||
* This is a virtual constructor for the command.
|
||||
*/
|
||||
virtual cmCommand* Clone() { return new cmFindFileCommand; }
|
||||
virtual std::string GetName() const { return "find_file"; }
|
||||
cmCommand* Clone() CM_OVERRIDE { return new cmFindFileCommand; }
|
||||
std::string GetName() const CM_OVERRIDE { return "find_file"; }
|
||||
|
||||
cmTypeMacro(cmFindFileCommand, cmFindPathCommand);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user