diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-27 18:39:37 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-27 23:10:39 (GMT) |
commit | a5ba00bdf875cb1290b90abb8c9f55c1b7f88876 (patch) | |
tree | acfcd3adec5158ed3c5eb4882ee05fb4d1bf6bfa /Source/cmGlobalVisualStudio10Generator.cxx | |
parent | 3f1378fbcab72a849908bbc988254f392d04c41a (diff) | |
download | CMake-a5ba00bdf875cb1290b90abb8c9f55c1b7f88876.zip CMake-a5ba00bdf875cb1290b90abb8c9f55c1b7f88876.tar.gz CMake-a5ba00bdf875cb1290b90abb8c9f55c1b7f88876.tar.bz2 |
strings: combine string literals where possible
Diffstat (limited to 'Source/cmGlobalVisualStudio10Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio10Generator.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio10Generator.cxx b/Source/cmGlobalVisualStudio10Generator.cxx index 39ec1cd..8befa75 100644 --- a/Source/cmGlobalVisualStudio10Generator.cxx +++ b/Source/cmGlobalVisualStudio10Generator.cxx @@ -438,7 +438,8 @@ bool cmGlobalVisualStudio10Generator::InitializeSystem(cmMakefile* mf) if (this->PlatformInGeneratorName) { std::ostringstream e; e << "CMAKE_SYSTEM_NAME is 'Android' but CMAKE_GENERATOR " - << "specifies a platform too: '" << this->GetName() << "'"; + "specifies a platform too: '" + << this->GetName() << "'"; mf->IssueMessage(MessageType::FATAL_ERROR, e.str()); return false; } @@ -468,7 +469,8 @@ bool cmGlobalVisualStudio10Generator::InitializeWindowsCE(cmMakefile* mf) if (this->PlatformInGeneratorName) { std::ostringstream e; e << "CMAKE_SYSTEM_NAME is 'WindowsCE' but CMAKE_GENERATOR " - << "specifies a platform too: '" << this->GetName() << "'"; + "specifies a platform too: '" + << this->GetName() << "'"; mf->IssueMessage(MessageType::FATAL_ERROR, e.str()); return false; } |