diff options
author | vvs31415 <vvs31415@users.noreply.github.com> | 2020-09-05 17:00:00 (GMT) |
---|---|---|
committer | vvs31415 <vvs31415@users.noreply.github.com> | 2020-09-08 16:19:34 (GMT) |
commit | dae5fe8b8fcbbeb89f6723f970dda3acf43147be (patch) | |
tree | e08488212dc0e551762612477f29461d92563376 /Source/cmConditionEvaluator.h | |
parent | 503d0f80e1ccafa8352145b1a733dd41751dcd7f (diff) | |
download | CMake-dae5fe8b8fcbbeb89f6723f970dda3acf43147be.zip CMake-dae5fe8b8fcbbeb89f6723f970dda3acf43147be.tar.gz CMake-dae5fe8b8fcbbeb89f6723f970dda3acf43147be.tar.bz2 |
cmConditionEvaluator: More use of cmProp
Diffstat (limited to 'Source/cmConditionEvaluator.h')
-rw-r--r-- | Source/cmConditionEvaluator.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmConditionEvaluator.h b/Source/cmConditionEvaluator.h index a1e3829..a4cedff 100644 --- a/Source/cmConditionEvaluator.h +++ b/Source/cmConditionEvaluator.h @@ -12,6 +12,7 @@ #include "cmListFileCache.h" #include "cmMessageType.h" #include "cmPolicies.h" +#include "cmProperty.h" class cmMakefile; @@ -31,11 +32,10 @@ public: private: // Filter the given variable definition based on policy CMP0054. - const char* GetDefinitionIfUnquoted( + cmProp GetDefinitionIfUnquoted( const cmExpandedCommandArgument& argument) const; - const char* GetVariableOrString( - const cmExpandedCommandArgument& argument) const; + cmProp GetVariableOrString(const cmExpandedCommandArgument& argument) const; bool IsKeyword(std::string const& keyword, cmExpandedCommandArgument& argument) const; |