diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-02-21 19:07:04 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-02-21 19:07:04 (GMT) |
commit | 828eebcd31e40c0afd564a4af25801861835370d (patch) | |
tree | 9f9d02d4e6f2f13e8f9412b2e2ef569eb176a98e /Source/cmLocalVisualStudio7Generator.cxx | |
parent | 7a13c7affe6ecdfda9ef4df1d5f9c7d039e922e0 (diff) | |
download | CMake-828eebcd31e40c0afd564a4af25801861835370d.zip CMake-828eebcd31e40c0afd564a4af25801861835370d.tar.gz CMake-828eebcd31e40c0afd564a4af25801861835370d.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 642b78f..ae4547d 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -1166,7 +1166,8 @@ void cmLocalVisualStudio7Generator // if the source file does not match the linker language // then force c or c++ - if(needForceLang || (linkLanguage && lang && strcmp(lang, linkLanguage) != 0)) + if(needForceLang || (linkLanguage && lang + && strcmp(lang, linkLanguage) != 0)) { if(strcmp(lang, "CXX") == 0) { |