summaryrefslogtreecommitdiff
path: root/Source/cmInstallTargetGenerator.cxx
diff options
context:
space:
mode:
authorVitaly Stakhovsky <vvs31415@gitlab.org>2020-01-21 11:00:00 -0500
committerVitaly Stakhovsky <vvs31415@gitlab.org>2020-01-21 11:09:35 -0500
commit5e54b0cf2f9706c731d9c188274ac2493587e86f (patch)
tree8f37f4b8df1271ae952b5ac0ad10773d07023f6f /Source/cmInstallTargetGenerator.cxx
parent7a89e3c36cf919bf7c608456bcfd5d12978dc037 (diff)
downloadcmake-5e54b0cf2f9706c731d9c188274ac2493587e86f.tar.gz
cmInstallGenerator: std::string params
Several construction parameters converted to std::string Also made a few class members const
Diffstat (limited to 'Source/cmInstallTargetGenerator.cxx')
-rw-r--r--Source/cmInstallTargetGenerator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmInstallTargetGenerator.cxx b/Source/cmInstallTargetGenerator.cxx
index d2fc2ea996..e05daa8d5b 100644
--- a/Source/cmInstallTargetGenerator.cxx
+++ b/Source/cmInstallTargetGenerator.cxx
@@ -29,8 +29,8 @@ cmInstallTargetGenerator::cmInstallTargetGenerator(
std::string file_permissions, std::vector<std::string> const& configurations,
std::string const& component, MessageLevel message, bool exclude_from_all,
bool optional, cmListFileBacktrace backtrace)
- : cmInstallGenerator(dest.c_str(), configurations, component.c_str(),
- message, exclude_from_all)
+ : cmInstallGenerator(dest, configurations, component, message,
+ exclude_from_all)
, TargetName(std::move(targetName))
, Target(nullptr)
, FilePermissions(std::move(file_permissions))