summaryrefslogtreecommitdiffstats
path: root/Source/CPack
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-08-09 11:59:48 (GMT)
committerKitware Robot <kwrobot@kitware.com>2018-08-09 12:00:03 (GMT)
commit75844dd6092418ba4353352dfc172d5f5588a553 (patch)
treeff62edccfba19c8513170dca39b981f7a8aa6e24 /Source/CPack
parent34334c098f85004242f109857193f5f8cdce697d (diff)
parent69ca85cc7faf937d6d9d1dc1a27e062cd7765b1f (diff)
downloadCMake-75844dd6092418ba4353352dfc172d5f5588a553.zip
CMake-75844dd6092418ba4353352dfc172d5f5588a553.tar.gz
CMake-75844dd6092418ba4353352dfc172d5f5588a553.tar.bz2
Merge topic 'cleanup-find-cstr'
69ca85cc7f Remove unnecessary c_str() in RegularExpression::find calls Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2271
Diffstat (limited to 'Source/CPack')
-rw-r--r--Source/CPack/cmCPackGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackGenerator.cxx b/Source/CPack/cmCPackGenerator.cxx
index 78af622..6347eed 100644
--- a/Source/CPack/cmCPackGenerator.cxx
+++ b/Source/CPack/cmCPackGenerator.cxx
@@ -369,7 +369,7 @@ int cmCPackGenerator::InstallProjectViaInstalledDirectories(
inFile += '/';
}
for (cmsys::RegularExpression& reg : ignoreFilesRegex) {
- if (reg.find(inFile.c_str())) {
+ if (reg.find(inFile)) {
cmCPackLogger(cmCPackLog::LOG_VERBOSE,
"Ignore file: " << inFile << std::endl);
skip = true;