diff options
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 879693a..8439ee1 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -181,7 +181,7 @@ public: */ void AddUtility(const char* u) { this->Utilities.insert(u);} ///! Get the utilities used by this target - std::set<cmStdString>const& GetUtilities() { return this->Utilities; } + std::set<cmStdString>const& GetUtilities() const { return this->Utilities; } void AnalyzeLibDependencies( const cmMakefile& mf ); |