summaryrefslogtreecommitdiffstats
path: root/Source/cmake.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-11 10:04:05 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-12 18:08:47 (GMT)
commitade20b433b2ce1cf176bc727a8ed9c47a5f6537e (patch)
treec75d760bf3c51da143c9dcd10a7e3be9691fdc04 /Source/cmake.h
parent6fb306ea3bbe04b8e4dde8f13eec3e6bdfe35086 (diff)
downloadCMake-ade20b433b2ce1cf176bc727a8ed9c47a5f6537e.zip
CMake-ade20b433b2ce1cf176bc727a8ed9c47a5f6537e.tar.gz
CMake-ade20b433b2ce1cf176bc727a8ed9c47a5f6537e.tar.bz2
cmake: Remove DebugConfigs member.
It adds needless complexity to global property handling.
Diffstat (limited to 'Source/cmake.h')
-rw-r--r--Source/cmake.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmake.h b/Source/cmake.h
index d2d3a85..0c3de65 100644
--- a/Source/cmake.h
+++ b/Source/cmake.h
@@ -359,7 +359,7 @@ class cmake
/** Get the list of configurations (in upper case) considered to be
debugging configurations.*/
- std::vector<std::string> const& GetDebugConfigs();
+ std::vector<std::string> GetDebugConfigs();
void SetCMakeEditCommand(std::string const& s)
{ this->CMakeEditCommand = s; }
@@ -469,7 +469,6 @@ private:
bool DebugTryCompile;
cmFileTimeComparison* FileComparison;
std::string GraphVizFile;
- std::vector<std::string> DebugConfigs;
InstalledFilesMap InstalledFiles;
void UpdateConversionPathTable();