summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorExpression.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-02-28 11:04:23 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-08-29 15:53:31 (GMT)
commitcfae430133f80761812abcac34ed2c7e72c40037 (patch)
tree1f8ea8de7ab8780d504ac535ea79b1e96fcbb43d /Source/cmGeneratorExpression.cxx
parent549b95f115d1f98a68ed390816d5ac9e1eb38806 (diff)
downloadCMake-cfae430133f80761812abcac34ed2c7e72c40037.zip
CMake-cfae430133f80761812abcac34ed2c7e72c40037.tar.gz
CMake-cfae430133f80761812abcac34ed2c7e72c40037.tar.bz2
Genex: Rename cmGeneratorExpression::NeedsParsing to NeedsEvaluation
Diffstat (limited to 'Source/cmGeneratorExpression.cxx')
-rw-r--r--Source/cmGeneratorExpression.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGeneratorExpression.cxx b/Source/cmGeneratorExpression.cxx
index e962313..e5072de 100644
--- a/Source/cmGeneratorExpression.cxx
+++ b/Source/cmGeneratorExpression.cxx
@@ -71,7 +71,7 @@ const char *cmCompiledGeneratorExpression::Evaluate(
cmTarget *currentTarget,
cmGeneratorExpressionDAGChecker *dagChecker) const
{
- if (!this->NeedsParsing)
+ if (!this->NeedsEvaluation)
{
return this->Input.c_str();
}
@@ -129,9 +129,9 @@ cmCompiledGeneratorExpression::cmCompiledGeneratorExpression(
cmGeneratorExpressionLexer l;
std::vector<cmGeneratorExpressionToken> tokens =
l.Tokenize(this->Input.c_str());
- this->NeedsParsing = l.GetSawGeneratorExpression();
+ this->NeedsEvaluation = l.GetSawGeneratorExpression();
- if (this->NeedsParsing)
+ if (this->NeedsEvaluation)
{
cmGeneratorExpressionParser p(tokens);
p.Parse(this->Evaluators);