diff options
author | Alex Turbov <i.zaufi@gmail.com> | 2022-07-03 18:35:32 (GMT) |
---|---|---|
committer | Alex Turbov <i.zaufi@gmail.com> | 2022-07-11 13:14:02 (GMT) |
commit | 898ba76d1bb2a5f728c9f9dfd377de7593a4d6f5 (patch) | |
tree | 4df40caf060609d12d66f15e22491544ace23e31 /Source/cmFindPackageCommand.cxx | |
parent | 5be13907a0226bb312ba6a20afccefc9dc2266da (diff) | |
download | CMake-898ba76d1bb2a5f728c9f9dfd377de7593a4d6f5.zip CMake-898ba76d1bb2a5f728c9f9dfd377de7593a4d6f5.tar.gz CMake-898ba76d1bb2a5f728c9f9dfd377de7593a4d6f5.tar.bz2 |
cmFindPackageCommand: Drop redundant `std::ostream::operator<<` calls
Diffstat (limited to 'Source/cmFindPackageCommand.cxx')
-rw-r--r-- | Source/cmFindPackageCommand.cxx | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/Source/cmFindPackageCommand.cxx b/Source/cmFindPackageCommand.cxx index 8a3fde1..068fbf8 100644 --- a/Source/cmFindPackageCommand.cxx +++ b/Source/cmFindPackageCommand.cxx @@ -768,11 +768,8 @@ bool cmFindPackageCommand::InitialPass(std::vector<std::string> const& args) "package configuration file provided by " << this->Name << " (" << this->Name << "Config.cmake or " << cmSystemTools::LowerCase(this->Name) - << "-config.cmake). " - "Otherwise make Find" - << this->Name - << ".cmake available in " - "CMAKE_MODULE_PATH."; + << "-config.cmake). Otherwise make Find" << this->Name + << ".cmake available in CMAKE_MODULE_PATH."; } aw << "\n" "(Variable CMAKE_FIND_PACKAGE_WARN_NO_MODULE enabled this " @@ -1167,8 +1164,9 @@ bool cmFindPackageCommand::HandlePackageMode( << (this->VersionExact ? "exactly matches" : "is compatible with") << " requested version " << (this->VersionRange.empty() ? "" : "range ") << "\"" - << this->VersionComplete << "\".\n" - << "The following configuration files were considered but not " + << this->VersionComplete + << "\".\n" + "The following configuration files were considered but not " "accepted:\n"; for (ConfigFileInfo const& info : @@ -1216,8 +1214,9 @@ bool cmFindPackageCommand::HandlePackageMode( "package or SDK, be sure it has been installed."; } else // if(!this->UseFindModules && !this->UseConfigFiles) { - e << "No \"Find" << this->Name << ".cmake\" found in " - << "CMAKE_MODULE_PATH."; + e << "No \"Find" << this->Name + << ".cmake\" found in " + "CMAKE_MODULE_PATH."; aw << "Find" << this->Name |