summaryrefslogtreecommitdiffstats
path: root/Source/cmFindPathCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-12-12 19:21:27 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-12-12 19:21:27 (GMT)
commitd1d11f73a1a7d2d2ad949e9a4ad1c65f155f3cfa (patch)
tree7a8b2cc1b50622473fc47fff676e68a3d52b147b /Source/cmFindPathCommand.cxx
parent55ff3c78b3d0d08cdbc6dea700e2add6a64c988b (diff)
parentb932cd429800bb24d71e1d60f954fe4df2d1eb5c (diff)
downloadCMake-d1d11f73a1a7d2d2ad949e9a4ad1c65f155f3cfa.zip
CMake-d1d11f73a1a7d2d2ad949e9a4ad1c65f155f3cfa.tar.gz
CMake-d1d11f73a1a7d2d2ad949e9a4ad1c65f155f3cfa.tar.bz2
Merge topic 'clang-tidy'
b932cd42 clang-tidy: apply misc-redundant-expression fixes 88da3d68 clang-tidy: apply misc-suspicious-string-compare fixes 58c66393 clang-tidy: apply readability-static-definition-in-anonymous-namespace fixes 85bfddda clang-tidy: apply readability-redundant-control-flow fixes 2988abd9 clang-tidy: apply modernize-use-bool-literals fixes a74e6893 clang-tidy: apply readability-redundant-string-init fixes cac529dd clang-tidy: apply performance-faster-string-find fixes 7c9db8f8 clang-tidy: apply performance-unnecessary-value-param fixes
Diffstat (limited to 'Source/cmFindPathCommand.cxx')
-rw-r--r--Source/cmFindPathCommand.cxx4
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 = "";
}