summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio7Generator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2012-04-19 14:06:59 (GMT)
committerBrad King <brad.king@kitware.com>2012-04-19 14:07:49 (GMT)
commitb8034104c112a618df73f1cb104b1d09e8492d66 (patch)
tree54065cdfe4487b6681ab30334c5688e0b583c204 /Source/cmGlobalVisualStudio7Generator.cxx
parent8787f946b73315d84649bd9818a8225a772c7c36 (diff)
downloadCMake-b8034104c112a618df73f1cb104b1d09e8492d66.zip
CMake-b8034104c112a618df73f1cb104b1d09e8492d66.tar.gz
CMake-b8034104c112a618df73f1cb104b1d09e8492d66.tar.bz2
VS: Fix line-too-long style errors
Commit 59139031 (include_external_msproject: Add TYPE, GUID, PLATFORM options, 2012-04-16) introduced some long lines. Wrap them.
Diffstat (limited to 'Source/cmGlobalVisualStudio7Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio7Generator.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/cmGlobalVisualStudio7Generator.cxx b/Source/cmGlobalVisualStudio7Generator.cxx
index 09b200f..6332d0b 100644
--- a/Source/cmGlobalVisualStudio7Generator.cxx
+++ b/Source/cmGlobalVisualStudio7Generator.cxx
@@ -250,9 +250,9 @@ void cmGlobalVisualStudio7Generator::WriteTargetConfigurations(
const char* expath = target->GetProperty("EXTERNAL_MSPROJECT");
if(expath)
{
- this->WriteProjectConfigurations(fout, target->GetName(),
- true,
- target->GetProperty("VS_PLATFORM_MAPPING"));
+ this->WriteProjectConfigurations(
+ fout, target->GetName(),
+ true, target->GetProperty("VS_PLATFORM_MAPPING"));
}
else
{
@@ -585,7 +585,8 @@ cmGlobalVisualStudio7Generator
// executables to the libraries it uses are also done here
void cmGlobalVisualStudio7Generator
::WriteProjectConfigurations(std::ostream& fout, const char* name,
- bool partOfDefaultBuild, const char* platformMapping)
+ bool partOfDefaultBuild,
+ const char* platformMapping)
{
std::string guid = this->GetGUID(name);
for(std::vector<std::string>::iterator i = this->Configurations.begin();