mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 22:50:26 -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
@@ -14,7 +14,7 @@ class cmXCode21Object : public cmXCodeObject
|
||||
{
|
||||
public:
|
||||
cmXCode21Object(PBXType ptype, Type type);
|
||||
virtual void PrintComment(std::ostream&);
|
||||
void PrintComment(std::ostream&) override;
|
||||
static void PrintList(std::vector<cmXCodeObject*> const&, std::ostream& out,
|
||||
PBXType t);
|
||||
static void PrintList(std::vector<cmXCodeObject*> const&, std::ostream& out);
|
||||
|
||||
Reference in New Issue
Block a user