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/cmCreateTestSourceList.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Source/cmCreateTestSourceList.cxx') diff --git a/Source/cmCreateTestSourceList.cxx b/Source/cmCreateTestSourceList.cxx index 69532e61b1..b78493f999 100644 --- a/Source/cmCreateTestSourceList.cxx +++ b/Source/cmCreateTestSourceList.cxx @@ -136,8 +136,7 @@ bool cmCreateTestSourceList::InitialPass(std::vector const& args, this->Makefile->AddDefinition("CMAKE_FUNCTION_TABLE_ENTIRES", functionMapCode.c_str()); bool res = true; - if (!this->Makefile->ConfigureFile(configFile.c_str(), driver.c_str(), false, - true, false)) { + if (!this->Makefile->ConfigureFile(configFile, driver, false, true, false)) { res = false; } -- cgit v1.2.1