diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2020-03-08 21:00:00 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2020-03-08 21:22:43 (GMT) |
commit | b0dc52704b5c4627c9ac11f1c63236367d7e3d3c (patch) | |
tree | 30c678d7762c831c13ca34b5078626cc9255eda4 /Source/cmGeneratorExpression.h | |
parent | 1bb7474abac4eb3aa7dd1b52d9d09d2205e104f3 (diff) | |
download | CMake-b0dc52704b5c4627c9ac11f1c63236367d7e3d3c.zip CMake-b0dc52704b5c4627c9ac11f1c63236367d7e3d3c.tar.gz CMake-b0dc52704b5c4627c9ac11f1c63236367d7e3d3c.tar.bz2 |
cmGeneratorExpression: remove const char* overloads
Diffstat (limited to 'Source/cmGeneratorExpression.h')
-rw-r--r-- | Source/cmGeneratorExpression.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/cmGeneratorExpression.h b/Source/cmGeneratorExpression.h index a0e40c3..75bba02 100644 --- a/Source/cmGeneratorExpression.h +++ b/Source/cmGeneratorExpression.h @@ -42,8 +42,6 @@ public: std::unique_ptr<cmCompiledGeneratorExpression> Parse( std::string input) const; - std::unique_ptr<cmCompiledGeneratorExpression> Parse( - const char* input) const; static std::string Evaluate( std::string input, cmLocalGenerator* lg, const std::string& config, @@ -51,12 +49,6 @@ public: cmGeneratorExpressionDAGChecker* dagChecker = nullptr, cmGeneratorTarget const* currentTarget = nullptr, std::string const& language = std::string()); - static std::string Evaluate( - const char* input, cmLocalGenerator* lg, const std::string& config, - cmGeneratorTarget const* headTarget = nullptr, - cmGeneratorExpressionDAGChecker* dagChecker = nullptr, - cmGeneratorTarget const* currentTarget = nullptr, - std::string const& language = std::string()); enum PreprocessContext { |