From 99dfcc05ef010556d14a29b6e3ee30758e20e212 Mon Sep 17 00:00:00 2001 From: Brad King Date: Sat, 15 Dec 2007 14:13:14 -0500 Subject: [PATCH] STYLE: Fixed line-too-long. --- Source/cmake.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 930d1ecf0..542444a57 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);