summaryrefslogtreecommitdiff
path: root/Source/cmLocalUnixMakefileGenerator3.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-09-27 11:15:00 -0400
committerBrad King <brad.king@kitware.com>2019-09-30 10:30:28 -0400
commit11fb377eb96e6a90ea96126a2d22739f6983182a (patch)
treecc8fe442a45be9f018e9fe6ed0b9754ee2926f73 /Source/cmLocalUnixMakefileGenerator3.h
parentbe7857f40d4cee1cd3de6900c9de6b45cb332fe7 (diff)
downloadcmake-11fb377eb96e6a90ea96126a2d22739f6983182a.tar.gz
cmLocalUnixMakefileGenerator3: Mark GetRelativeTargetDirectory const
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.h')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.h b/Source/cmLocalUnixMakefileGenerator3.h
index c02c0dc06e..f2295eff00 100644
--- a/Source/cmLocalUnixMakefileGenerator3.h
+++ b/Source/cmLocalUnixMakefileGenerator3.h
@@ -139,7 +139,8 @@ public:
void WriteSpecialTargetsTop(std::ostream& makefileStream);
void WriteSpecialTargetsBottom(std::ostream& makefileStream);
- std::string GetRelativeTargetDirectory(cmGeneratorTarget* target);
+ std::string GetRelativeTargetDirectory(
+ cmGeneratorTarget const* target) const;
// File pairs for implicit dependency scanning. The key of the map
// is the depender and the value is the explicit dependee.