STYLE: cacheStart is used only locally in the if-branch

Alex
This commit is contained in:
Alexander Neundorf 2009-05-10 16:07:34 -04:00
parent 8e03bfb57d
commit ad194e659f
1 changed files with 1 additions and 2 deletions

View File

@ -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();
}