diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2010-09-15 20:41:41 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2010-09-15 20:41:41 (GMT) |
commit | 390117435ad0595d9fcc9cf4c93f70f7939b8cf6 (patch) | |
tree | 164190a7138e342926219c4f2b7ada65bed4309b /Source/cmLocalVisualStudio6Generator.cxx | |
parent | de7a090847b4e3113209cf518742cbc1988b3fd8 (diff) | |
download | CMake-390117435ad0595d9fcc9cf4c93f70f7939b8cf6.zip CMake-390117435ad0595d9fcc9cf4c93f70f7939b8cf6.tar.gz CMake-390117435ad0595d9fcc9cf4c93f70f7939b8cf6.tar.bz2 |
Fix KWStyle line length issues.
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio6Generator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx index 01fcafd..eb4e4a4 100644 --- a/Source/cmLocalVisualStudio6Generator.cxx +++ b/Source/cmLocalVisualStudio6Generator.cxx @@ -1187,7 +1187,8 @@ void cmLocalVisualStudio6Generator extraLinkOptionsMinSizeRel += targetLinkFlags; } - if(const char* targetLinkFlags = target.GetProperty("LINK_FLAGS_RELWITHDEBINFO")) + if(const char* targetLinkFlags = + target.GetProperty("LINK_FLAGS_RELWITHDEBINFO")) { extraLinkOptionsRelWithDebInfo += " "; extraLinkOptionsRelWithDebInfo += targetLinkFlags; |