diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-12-10 13:49:22 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-12-12 19:04:13 (GMT) |
commit | cac529dd495f05dcd24d33dd5fa595ff28eb7a60 (patch) | |
tree | 0f5c90d4ccd017e2ed053aa2dc5a28c9ac1c8860 /Source/cmAddLibraryCommand.cxx | |
parent | 7c9db8f8139b945d4c55d9061e4ef122351b210d (diff) | |
download | CMake-cac529dd495f05dcd24d33dd5fa595ff28eb7a60.zip CMake-cac529dd495f05dcd24d33dd5fa595ff28eb7a60.tar.gz CMake-cac529dd495f05dcd24d33dd5fa595ff28eb7a60.tar.bz2 |
clang-tidy: apply performance-faster-string-find fixes
Diffstat (limited to 'Source/cmAddLibraryCommand.cxx')
-rw-r--r-- | Source/cmAddLibraryCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmAddLibraryCommand.cxx b/Source/cmAddLibraryCommand.cxx index 5c9c744..9ae4ace 100644 --- a/Source/cmAddLibraryCommand.cxx +++ b/Source/cmAddLibraryCommand.cxx @@ -173,7 +173,7 @@ bool cmAddLibraryCommand::InitialPass(std::vector<std::string> const& args, !cmGlobalGenerator::IsReservedTarget(libName); if (nameOk && !importTarget && !isAlias) { - nameOk = libName.find(":") == std::string::npos; + nameOk = libName.find(':') == std::string::npos; } if (!nameOk) { cmake::MessageType messageType = cmake::AUTHOR_WARNING; |