diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-08-01 10:57:18 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-08-01 11:33:00 (GMT) |
commit | a693e875db5d0939a316955f513396e533153b6d (patch) | |
tree | e063b89a0bb0d69ce7c3f332d7e03a8efec6421b /Source/cmFindProgramCommand.cxx | |
parent | 33d9a691306956750bffb10be9d0b17a47c0ec0b (diff) | |
download | CMake-a693e875db5d0939a316955f513396e533153b6d.zip CMake-a693e875db5d0939a316955f513396e533153b6d.tar.gz CMake-a693e875db5d0939a316955f513396e533153b6d.tar.bz2 |
Cleanups: Use cmHas{Prefix,Suffix} instead of String{Starts,Ends}With
Diffstat (limited to 'Source/cmFindProgramCommand.cxx')
-rw-r--r-- | Source/cmFindProgramCommand.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmFindProgramCommand.cxx b/Source/cmFindProgramCommand.cxx index 782f746..8fcf1ac 100644 --- a/Source/cmFindProgramCommand.cxx +++ b/Source/cmFindProgramCommand.cxx @@ -4,6 +4,7 @@ #include "cmMakefile.h" #include "cmStateTypes.h" +#include "cmStringAlgorithms.h" #include "cmSystemTools.h" class cmExecutionStatus; @@ -71,7 +72,7 @@ struct cmFindProgramHelper bool CheckDirectoryForName(std::string const& path, std::string const& name) { for (std::string const& ext : this->Extensions) { - if (!ext.empty() && cmSystemTools::StringEndsWith(name, ext.c_str())) { + if (!ext.empty() && cmHasSuffix(name, ext)) { continue; } this->TestNameExt = name; |