mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-05 05:39:57 -05:00
mark functions with CM_OVERRIDE
This commit is contained in:
@@ -28,7 +28,7 @@ class cmExtraCodeBlocksGenerator : public cmExternalMakefileProjectGenerator
|
||||
public:
|
||||
cmExtraCodeBlocksGenerator();
|
||||
|
||||
virtual std::string GetName() const
|
||||
std::string GetName() const CM_OVERRIDE
|
||||
{
|
||||
return cmExtraCodeBlocksGenerator::GetActualName();
|
||||
}
|
||||
@@ -38,10 +38,10 @@ public:
|
||||
return new cmExtraCodeBlocksGenerator;
|
||||
}
|
||||
/** Get the documentation entry for this generator. */
|
||||
virtual void GetDocumentation(cmDocumentationEntry& entry,
|
||||
const std::string& fullName) const;
|
||||
void GetDocumentation(cmDocumentationEntry& entry,
|
||||
const std::string& fullName) const CM_OVERRIDE;
|
||||
|
||||
virtual void Generate();
|
||||
void Generate() CM_OVERRIDE;
|
||||
|
||||
private:
|
||||
struct CbpUnit
|
||||
|
||||
Reference in New Issue
Block a user