diff options
author | Nils Gladitz <nilsgladitz@gmail.com> | 2014-09-11 17:50:51 (GMT) |
---|---|---|
committer | Nils Gladitz <nilsgladitz@gmail.com> | 2014-09-11 19:17:09 (GMT) |
commit | b900c1ccaae7a500dda88240873122d0d899bf93 (patch) | |
tree | 524168715d82090de6c13a0c887ebbab2ad0322d /Source/cmIfCommand.h | |
parent | 103ddca336c6ccf2fca3c2b8897c8f9319f836d5 (diff) | |
download | CMake-b900c1ccaae7a500dda88240873122d0d899bf93.zip CMake-b900c1ccaae7a500dda88240873122d0d899bf93.tar.gz CMake-b900c1ccaae7a500dda88240873122d0d899bf93.tar.bz2 |
If: Extract cmConditionEvaluator from if() implementation
Diffstat (limited to 'Source/cmIfCommand.h')
-rw-r--r-- | Source/cmIfCommand.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Source/cmIfCommand.h b/Source/cmIfCommand.h index 814c052..ea2a68f 100644 --- a/Source/cmIfCommand.h +++ b/Source/cmIfCommand.h @@ -70,18 +70,6 @@ public: */ virtual bool IsScriptable() const { return true; } - // this is a shared function for both If and Else to determine if the - // arguments were valid, and if so, was the response true. If there is - // an error, the errorString will be set. - static bool IsTrue(const std::vector<std::string> &args, - std::string &errorString, cmMakefile *mf, - cmake::MessageType &status); - - // Get a definition from the makefile. If it doesn't exist, - // return the original string. - static const char* GetVariableOrString(const std::string& str, - const cmMakefile* mf); - cmTypeMacro(cmIfCommand, cmCommand); }; |