summaryrefslogtreecommitdiff
path: root/Source/cmGeneratorExpression.cxx
diff options
context:
space:
mode:
authorVitaly Stakhovsky <vvs31415@gitlab.org>2020-07-11 11:41:19 -0400
committerVitaly Stakhovsky <vvs31415@gitlab.org>2020-07-11 11:51:22 -0400
commit43f7b17816e2de899dc5e9d0ed650c615e455eb3 (patch)
tree150d59825de030e091baafa0b8f74f0d24798867 /Source/cmGeneratorExpression.cxx
parentfd1df4995b6c1e063bb978e034a264b0e2d59f63 (diff)
downloadcmake-43f7b17816e2de899dc5e9d0ed650c615e455eb3.tar.gz
cmGeneratorExpressionInterpreter::Evaluate: remove const char* overload
Diffstat (limited to 'Source/cmGeneratorExpression.cxx')
-rw-r--r--Source/cmGeneratorExpression.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmGeneratorExpression.cxx b/Source/cmGeneratorExpression.cxx
index 6e293d51a8..840f5112d6 100644
--- a/Source/cmGeneratorExpression.cxx
+++ b/Source/cmGeneratorExpression.cxx
@@ -406,9 +406,3 @@ const std::string& cmGeneratorExpressionInterpreter::Evaluate(
this->LocalGenerator, this->Config, this->HeadTarget, &dagChecker, nullptr,
this->Language);
}
-
-const std::string& cmGeneratorExpressionInterpreter::Evaluate(
- const char* expression, const std::string& property)
-{
- return this->Evaluate(std::string(expression ? expression : ""), property);
-}