diff options
author | Brad King <brad.king@kitware.com> | 2019-09-27 14:13:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-09-30 14:30:28 (GMT) |
commit | be7857f40d4cee1cd3de6900c9de6b45cb332fe7 (patch) | |
tree | d303ff0f876782de1ef458d53de1717bb20ac6ff /Source | |
parent | 4a92df86670f6407531242cf81ebcec056cc3eb5 (diff) | |
download | CMake-be7857f40d4cee1cd3de6900c9de6b45cb332fe7.zip CMake-be7857f40d4cee1cd3de6900c9de6b45cb332fe7.tar.gz CMake-be7857f40d4cee1cd3de6900c9de6b45cb332fe7.tar.bz2 |
cmLocalCommonGenerator: Mark GetConfigName as const
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalCommonGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalCommonGenerator.h b/Source/cmLocalCommonGenerator.h index abebbc2..eaef6ab 100644 --- a/Source/cmLocalCommonGenerator.h +++ b/Source/cmLocalCommonGenerator.h @@ -25,7 +25,7 @@ public: std::string wd); ~cmLocalCommonGenerator() override; - std::string const& GetConfigName() { return this->ConfigName; } + std::string const& GetConfigName() const { return this->ConfigName; } std::string GetWorkingDirectory() const { return this->WorkingDirectory; } |