summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-01-21 12:57:20 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-01-21 12:57:33 (GMT)
commitc7428e1729239264af84cb9ecb6f05f0b1e04e84 (patch)
treebf237aa6ab7120e8740fe4cbe7eaaf6f93e1d297 /Source/cmMakefile.cxx
parent177b5fb61b6d1fc64c70ea3bf65652ccad690dd5 (diff)
parent25caf7bafeb18d9394eb2d13686970c68e9ad88c (diff)
downloadCMake-c7428e1729239264af84cb9ecb6f05f0b1e04e84.zip
CMake-c7428e1729239264af84cb9ecb6f05f0b1e04e84.tar.gz
CMake-c7428e1729239264af84cb9ecb6f05f0b1e04e84.tar.bz2
Merge topic 'read-list-file'
25caf7bafe cmMakefile::ReadListFile() accepts std::string argument Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2821
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 9e9b6af..9589b7f 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -533,7 +533,8 @@ void cmMakefile::IncludeScope::EnforceCMP0011()
}
}
-bool cmMakefile::ReadDependentFile(const char* filename, bool noPolicyScope)
+bool cmMakefile::ReadDependentFile(const std::string& filename,
+ bool noPolicyScope)
{
this->AddDefinition("CMAKE_PARENT_LIST_FILE",
this->GetDefinition("CMAKE_CURRENT_LIST_FILE"));
@@ -586,7 +587,7 @@ private:
bool ReportError;
};
-bool cmMakefile::ReadListFile(const char* filename)
+bool cmMakefile::ReadListFile(const std::string& filename)
{
std::string filenametoread = cmSystemTools::CollapseFullPath(
filename, this->GetCurrentSourceDirectory());