summaryrefslogtreecommitdiffstats
path: root/Source/cmInstalledFile.cxx
diff options
context:
space:
mode:
authorVitaly Stakhovsky <vvs31415@gitlab.org>2020-03-08 21:00:00 (GMT)
committerVitaly Stakhovsky <vvs31415@gitlab.org>2020-03-08 21:22:43 (GMT)
commitb0dc52704b5c4627c9ac11f1c63236367d7e3d3c (patch)
tree30c678d7762c831c13ca34b5078626cc9255eda4 /Source/cmInstalledFile.cxx
parent1bb7474abac4eb3aa7dd1b52d9d09d2205e104f3 (diff)
downloadCMake-b0dc52704b5c4627c9ac11f1c63236367d7e3d3c.zip
CMake-b0dc52704b5c4627c9ac11f1c63236367d7e3d3c.tar.gz
CMake-b0dc52704b5c4627c9ac11f1c63236367d7e3d3c.tar.bz2
cmGeneratorExpression: remove const char* overloads
Diffstat (limited to 'Source/cmInstalledFile.cxx')
-rw-r--r--Source/cmInstalledFile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmInstalledFile.cxx b/Source/cmInstalledFile.cxx
index a65ae03..8972a63 100644
--- a/Source/cmInstalledFile.cxx
+++ b/Source/cmInstalledFile.cxx
@@ -56,7 +56,7 @@ void cmInstalledFile::AppendProperty(cmMakefile const* mf,
cmGeneratorExpression ge(backtrace);
Property& property = this->Properties[prop];
- property.ValueExpressions.push_back(ge.Parse(value));
+ property.ValueExpressions.push_back(ge.Parse(value ? value : ""));
}
bool cmInstalledFile::HasProperty(const std::string& prop) const