diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-12-13 20:42:49 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-12-13 20:42:49 (GMT) |
commit | 3409e0a777a5ae0306e2165bc518f60a5281b8ca (patch) | |
tree | 498c91505878c22351e463e9db1c0334b917350a /Source/cmLocalVisualStudio7Generator.cxx | |
parent | 5f00eb6e79e7d8cfed3d2dc16ef3d4e114c5e6cb (diff) | |
download | CMake-3409e0a777a5ae0306e2165bc518f60a5281b8ca.zip CMake-3409e0a777a5ae0306e2165bc518f60a5281b8ca.tar.gz CMake-3409e0a777a5ae0306e2165bc518f60a5281b8ca.tar.bz2 |
STYLE: fix indent
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 4e7db83..a912931 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -1810,7 +1810,7 @@ cmLocalVisualStudio7GeneratorOptions else if(entry->special & cmVS7FlagTable::SemicolonAppendable) { const char *new_value = flag+1+n; - + std::map<cmStdString,cmStdString>::iterator itr; itr = this->FlagMap.find(entry->IDEName); if(itr != this->FlagMap.end()) @@ -1821,9 +1821,9 @@ cmLocalVisualStudio7GeneratorOptions } else { - this->FlagMap[entry->IDEName] = new_value; + this->FlagMap[entry->IDEName] = new_value; } - } + } else { // Use the user-specified value. @@ -1838,18 +1838,18 @@ cmLocalVisualStudio7GeneratorOptions this->FlagMap[entry->IDEName] = entry->value; entry_found = true; } - + // If the flag has been handled by an entry not requesting a // search continuation we are done. if(entry_found && !(entry->special & cmVS7FlagTable::Continue)) { return true; } - + // If the entry was found the flag has been handled. flag_handled = flag_handled || entry_found; } - + return false; } |