summaryrefslogtreecommitdiffstats
path: root/Source/cmXCode21Object.h
diff options
context:
space:
mode:
authorMatthias Maennich <matthias@maennich.net>2017-09-19 14:00:21 (GMT)
committerBrad King <brad.king@kitware.com>2017-09-28 11:23:41 (GMT)
commita45928cdebcf37de2605e4f58509a37542dd9eba (patch)
tree57e18d073c2fdcc2fd9c7d3d04b982c4fb5b2f48 /Source/cmXCode21Object.h
parentb128f8c5bc02f716c700d4560b949b05afdcb659 (diff)
downloadCMake-a45928cdebcf37de2605e4f58509a37542dd9eba.zip
CMake-a45928cdebcf37de2605e4f58509a37542dd9eba.tar.gz
CMake-a45928cdebcf37de2605e4f58509a37542dd9eba.tar.bz2
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>
Diffstat (limited to 'Source/cmXCode21Object.h')
-rw-r--r--Source/cmXCode21Object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmXCode21Object.h b/Source/cmXCode21Object.h
index bcd8d93..8e4b80f 100644
--- a/Source/cmXCode21Object.h
+++ b/Source/cmXCode21Object.h
@@ -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);