summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallDirectoryGenerator.h
diff options
context:
space:
mode:
authorVitaly Stakhovsky <vvs31415@gitlab.org>2020-01-21 16:00:00 (GMT)
committerVitaly Stakhovsky <vvs31415@gitlab.org>2020-01-21 16:09:35 (GMT)
commit5e54b0cf2f9706c731d9c188274ac2493587e86f (patch)
tree8f37f4b8df1271ae952b5ac0ad10773d07023f6f /Source/cmInstallDirectoryGenerator.h
parent7a89e3c36cf919bf7c608456bcfd5d12978dc037 (diff)
downloadCMake-5e54b0cf2f9706c731d9c188274ac2493587e86f.zip
CMake-5e54b0cf2f9706c731d9c188274ac2493587e86f.tar.gz
CMake-5e54b0cf2f9706c731d9c188274ac2493587e86f.tar.bz2
cmInstallGenerator: std::string params
Several construction parameters converted to std::string Also made a few class members const
Diffstat (limited to 'Source/cmInstallDirectoryGenerator.h')
-rw-r--r--Source/cmInstallDirectoryGenerator.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmInstallDirectoryGenerator.h b/Source/cmInstallDirectoryGenerator.h
index e53e81c..bec89df 100644
--- a/Source/cmInstallDirectoryGenerator.h
+++ b/Source/cmInstallDirectoryGenerator.h
@@ -21,7 +21,8 @@ class cmInstallDirectoryGenerator : public cmInstallGenerator
{
public:
cmInstallDirectoryGenerator(std::vector<std::string> const& dirs,
- const char* dest, std::string file_permissions,
+ std::string const& dest,
+ std::string file_permissions,
std::string dir_permissions,
std::vector<std::string> const& configurations,
std::string const& component,