diff options
author | Brad King <brad.king@kitware.com> | 2007-12-15 19:13:14 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-12-15 19:13:14 (GMT) |
commit | 99dfcc05ef010556d14a29b6e3ee30758e20e212 (patch) | |
tree | de825d60ad5518a5675f3b78a812c86ff4cad13f /Source/cmake.cxx | |
parent | f14385637160448ce7460b4fd190472008c83ad6 (diff) | |
download | CMake-99dfcc05ef010556d14a29b6e3ee30758e20e212.zip CMake-99dfcc05ef010556d14a29b6e3ee30758e20e212.tar.gz CMake-99dfcc05ef010556d14a29b6e3ee30758e20e212.tar.bz2 |
STYLE: Fixed line-too-long.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 930d1ec..542444a 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1816,7 +1816,8 @@ int cmake::HandleDeleteCacheVariables(const char* var) int cmake::Configure() { int ret = this->ActualConfigure(); - const char* delCacheVars = this->GetProperty("__CMAKE_DELETE_CACHE_CHANGE_VARS_"); + const char* delCacheVars = + this->GetProperty("__CMAKE_DELETE_CACHE_CHANGE_VARS_"); if(delCacheVars && delCacheVars[0] != 0) { return this->HandleDeleteCacheVariables(delCacheVars); |