summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-06-13 13:46:10 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-06-13 13:46:10 (GMT)
commitf9eb5cf76892bc5e79a76bf823673358c8236be5 (patch)
tree4accbde4406399403097e8850264731fffdd78d6
parent7f497ea977aa29cd7ec21adc8913c0ad10b53bca (diff)
downloadCMake-f9eb5cf76892bc5e79a76bf823673358c8236be5.zip
CMake-f9eb5cf76892bc5e79a76bf823673358c8236be5.tar.gz
CMake-f9eb5cf76892bc5e79a76bf823673358c8236be5.tar.bz2
ENH: fix line length
-rw-r--r--Source/cmLocalVisualStudio7Generator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index 84acda3..99e6ca3 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -1184,7 +1184,8 @@ void cmLocalVisualStudio7Generator
cmStdString>::iterator m = fileFlagMap.begin();
m != fileFlagMap.end(); ++m)
{
- fout << "\t\t\t\t\t" << m->first << "=\"" << m->second << "\"\n";
+ fout << "\t\t\t\t\t" << m->first << "=\""
+ << m->second << "\"\n";
}
}
if(additionalDeps.length())