From aff4a5fab543ab7dfb87d1d12961c85a28022a2b Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 8 Apr 2016 10:45:25 -0400 Subject: [PATCH] cmConditionEvaluator: Use pre-allocated keywords in more places Inspired-by: Harry Mallon --- Source/cmConditionEvaluator.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/cmConditionEvaluator.cxx b/Source/cmConditionEvaluator.cxx index 305ebe3d9..e63f48634 100644 --- a/Source/cmConditionEvaluator.cxx +++ b/Source/cmConditionEvaluator.cxx @@ -682,11 +682,11 @@ bool cmConditionEvaluator::HandleLevel2(cmArgumentList &newArgs, { result = false; } - else if (*(argP1) == "LESS") + else if (*(argP1) == keyLESS) { result = (lhs < rhs); } - else if (*(argP1) == "GREATER") + else if (*(argP1) == keyGREATER) { result = (lhs > rhs); } @@ -707,11 +707,11 @@ bool cmConditionEvaluator::HandleLevel2(cmArgumentList &newArgs, def2 = this->GetVariableOrString(*argP2); int val = strcmp(def,def2); bool result; - if (*(argP1) == "STRLESS") + if (*(argP1) == keySTRLESS) { result = (val < 0); } - else if (*(argP1) == "STRGREATER") + else if (*(argP1) == keySTRGREATER) { result = (val > 0); }