summaryrefslogtreecommitdiff
path: root/Source/CPack/IFW/cmCPackIFWRepository.h
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2021-01-22 10:37:38 -0500
committerBen Boeckel <ben.boeckel@kitware.com>2021-01-27 08:45:45 -0500
commit808b17b1206dd70c7fbd676e8c24181cde537954 (patch)
treee20da218e1f9d702f4ff76fac9595740d375c3ed /Source/CPack/IFW/cmCPackIFWRepository.h
parent4470eb5179d6ccbe5e31cec758546e820752f2d8 (diff)
downloadcmake-808b17b1206dd70c7fbd676e8c24181cde537954.tar.gz
clang-tidy: fix `readability-make-member-function-const` warnings
Diffstat (limited to 'Source/CPack/IFW/cmCPackIFWRepository.h')
-rw-r--r--Source/CPack/IFW/cmCPackIFWRepository.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CPack/IFW/cmCPackIFWRepository.h b/Source/CPack/IFW/cmCPackIFWRepository.h
index 21afd8bdb1..015345240f 100644
--- a/Source/CPack/IFW/cmCPackIFWRepository.h
+++ b/Source/CPack/IFW/cmCPackIFWRepository.h
@@ -76,8 +76,8 @@ public:
bool PatchUpdatesXml();
- void WriteRepositoryConfig(cmXMLWriter& xout);
- void WriteRepositoryUpdate(cmXMLWriter& xout);
+ void WriteRepositoryConfig(cmXMLWriter& xout) const;
+ void WriteRepositoryUpdate(cmXMLWriter& xout) const;
void WriteRepositoryUpdates(cmXMLWriter& xout);
RepositoriesVector RepositoryUpdate;