From ad194e659fcf99911ac467db7c6332b2671f8c2e Mon Sep 17 00:00:00 2001 From: Alexander Neundorf Date: Sun, 10 May 2009 16:07:34 -0400 Subject: [PATCH] STYLE: cacheStart is used only locally in the if-branch Alex --- Source/cmSetCommand.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/cmSetCommand.cxx b/Source/cmSetCommand.cxx index 1be75cee4..b9b2b7c39 100644 --- a/Source/cmSetCommand.cxx +++ b/Source/cmSetCommand.cxx @@ -79,7 +79,6 @@ bool cmSetCommand cmCacheManager::CacheEntryType type = cmCacheManager::STRING; // required if cache const char* docstring = 0; // required if cache - std::string::size_type cacheStart = 0; unsigned int ignoreLastArgs = 0; // look for PARENT_SCOPE argument @@ -145,7 +144,7 @@ bool cmSetCommand if(cache) { - cacheStart = args.size() - 3 - (force ? 1 : 0); + std::string::size_type cacheStart = args.size() - 3 - (force ? 1 : 0); type = cmCacheManager::StringToType(args[cacheStart+1].c_str()); docstring = args[cacheStart+2].c_str(); }