diff options
author | Brad King <brad.king@kitware.com> | 2012-04-19 14:06:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-04-19 14:07:49 (GMT) |
commit | b8034104c112a618df73f1cb104b1d09e8492d66 (patch) | |
tree | 54065cdfe4487b6681ab30334c5688e0b583c204 /Source/cmIncludeExternalMSProjectCommand.cxx | |
parent | 8787f946b73315d84649bd9818a8225a772c7c36 (diff) | |
download | CMake-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/cmIncludeExternalMSProjectCommand.cxx')
-rw-r--r-- | Source/cmIncludeExternalMSProjectCommand.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/cmIncludeExternalMSProjectCommand.cxx b/Source/cmIncludeExternalMSProjectCommand.cxx index bcec45e..d219c16 100644 --- a/Source/cmIncludeExternalMSProjectCommand.cxx +++ b/Source/cmIncludeExternalMSProjectCommand.cxx @@ -71,10 +71,9 @@ bool cmIncludeExternalMSProjectCommand if (!customGuid.empty()) { std::string guidVariable = utility_name + "_GUID_CMAKE"; - this->Makefile->GetCMakeInstance()->AddCacheEntry(guidVariable.c_str(), - customGuid.c_str(), - "Stored GUID", - cmCacheManager::INTERNAL); + this->Makefile->GetCMakeInstance()->AddCacheEntry( + guidVariable.c_str(), customGuid.c_str(), + "Stored GUID", cmCacheManager::INTERNAL); } // Create a target instance for this utility. |