From 0281f9a4cad6e189601a87c9ccfba8c54e71e14b Mon Sep 17 00:00:00 2001 From: Vitaly Stakhovsky Date: Mon, 18 Feb 2019 09:54:51 -0500 Subject: cmMakefile::ConfigureFile: Accept `std::string` parameters --- Source/cmLocalGenerator.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/cmLocalGenerator.h') diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index f9839f6c19..de12190e90 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -340,14 +340,14 @@ public: */ void GenerateAppleInfoPList(cmGeneratorTarget* target, const std::string& targetName, - const char* fname); + const std::string& fname); /** * Generate a macOS framework Info.plist file. */ void GenerateFrameworkInfoPList(cmGeneratorTarget* target, const std::string& targetName, - const char* fname); + const std::string& fname); /** Construct a comment for a custom command. */ std::string ConstructComment(cmCustomCommandGenerator const& ccg, const char* default_comment = ""); -- cgit v1.2.1