mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-25 00:59:19 -06:00
Fix some occurrences of missing override keywords
Fix issues diagnosed by clang-tidy [modernize-use-override]. These occurrences are only showing up on OSX. Signed-off-by: Matthias Maennich <matthias@maennich.net>
This commit is contained in:
committed by
Brad King
parent
b128f8c5bc
commit
a45928cdeb
@@ -27,16 +27,16 @@ public:
|
||||
///! Set cache only and recurse to false by default.
|
||||
cmLocalXCodeGenerator(cmGlobalGenerator* gg, cmMakefile* mf);
|
||||
|
||||
virtual ~cmLocalXCodeGenerator();
|
||||
virtual std::string GetTargetDirectory(
|
||||
cmGeneratorTarget const* target) const;
|
||||
virtual void AppendFlagEscape(std::string& flags,
|
||||
const std::string& rawFlag);
|
||||
virtual void Generate();
|
||||
~cmLocalXCodeGenerator() override;
|
||||
std::string GetTargetDirectory(
|
||||
cmGeneratorTarget const* target) const override;
|
||||
void AppendFlagEscape(std::string& flags,
|
||||
const std::string& rawFlag) override;
|
||||
void Generate() override;
|
||||
virtual void GenerateInstallRules();
|
||||
virtual void ComputeObjectFilenames(
|
||||
void ComputeObjectFilenames(
|
||||
std::map<cmSourceFile const*, std::string>& mapping,
|
||||
cmGeneratorTarget const* gt = nullptr);
|
||||
cmGeneratorTarget const* gt = nullptr) override;
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user