summaryrefslogtreecommitdiff
path: root/Source/cmXCodeObject.h
diff options
context:
space:
mode:
authorMatthias Maennich <matthias@maennich.net>2017-09-19 23:49:38 +0200
committerBrad King <brad.king@kitware.com>2017-09-28 07:23:42 -0400
commit9a2da3395034844fb91998005d9c7db648492c6b (patch)
treecfbae33e6f9b354c63fc33e9568c81b846e094e7 /Source/cmXCodeObject.h
parent870dd06da15751250786d435ee4c1361a2b10b4d (diff)
downloadcmake-9a2da3395034844fb91998005d9c7db648492c6b.tar.gz
Fix some occurrences of readability-avoid-const-params-in-decls
Fix issues diagnosed by clang-tidy [readability-avoid-const-params-in-decls] Signed-off-by: Matthias Maennich <matthias@maennich.net>
Diffstat (limited to 'Source/cmXCodeObject.h')
-rw-r--r--Source/cmXCodeObject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmXCodeObject.h b/Source/cmXCodeObject.h
index ceed6012c3..22ec61b6e2 100644
--- a/Source/cmXCodeObject.h
+++ b/Source/cmXCodeObject.h
@@ -94,8 +94,8 @@ public:
}
static void Indent(int level, std::ostream& out);
void Print(std::ostream& out);
- void PrintAttribute(std::ostream& out, const int level,
- const std::string& separator, const int factor,
+ void PrintAttribute(std::ostream& out, int level,
+ const std::string& separator, int factor,
const std::string& name, const cmXCodeObject* object,
const cmXCodeObject* parent);
virtual void PrintComment(std::ostream&) {}