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/cmFindPathCommand.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/cmFindPathCommand.cxx')
-rw-r--r-- | Source/cmFindPathCommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmFindPathCommand.cxx b/Source/cmFindPathCommand.cxx index 0900f46..8d4bcf3 100644 --- a/Source/cmFindPathCommand.cxx +++ b/Source/cmFindPathCommand.cxx @@ -72,7 +72,7 @@ std::string cmFindPathCommand::FindHeaderInFramework(std::string const& file, { std::string fileName = file; std::string frameWorkName; - std::string::size_type pos = fileName.find("/"); + std::string::size_type pos = fileName.find('/'); // if there is a / in the name try to find the header as a framework // For example bar/foo.h would look for: // bar.framework/Headers/foo.h @@ -83,7 +83,7 @@ std::string cmFindPathCommand::FindHeaderInFramework(std::string const& file, frameWorkName = frameWorkName.substr(0, frameWorkName.size() - fileName.size() - 1); // if the framework has a path in it then just use the filename - if (frameWorkName.find("/") != frameWorkName.npos) { + if (frameWorkName.find('/') != frameWorkName.npos) { fileName = file; frameWorkName = ""; } |