From 185bcface43d95b062c5be16321ae9aa59ed0057 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 16 Jul 2018 11:12:34 -0400 Subject: cmExprParserHelper: Remove some unused code --- Source/cmExprParserHelper.cxx | 9 --------- Source/cmExprParserHelper.h | 1 - 2 files changed, 10 deletions(-) diff --git a/Source/cmExprParserHelper.cxx b/Source/cmExprParserHelper.cxx index d90d8b9..1f38d33 100644 --- a/Source/cmExprParserHelper.cxx +++ b/Source/cmExprParserHelper.cxx @@ -20,7 +20,6 @@ cmExprParserHelper::cmExprParserHelper() cmExprParserHelper::~cmExprParserHelper() { - this->CleanupParser(); } int cmExprParserHelper::ParseString(const char* str, int verb) @@ -69,13 +68,9 @@ int cmExprParserHelper::ParseString(const char* str, int verb) } cmExpr_yylex_destroy(yyscanner); if (res != 0) { - // str << "CAL_Parser returned: " << res << std::endl; - // std::cerr << "When parsing: [" << str << "]" << std::endl; return 0; } - this->CleanupParser(); - if (Verbose) { std::cerr << "Expanding [" << str << "] produced: [" << this->Result << "]" << std::endl; @@ -83,10 +78,6 @@ int cmExprParserHelper::ParseString(const char* str, int verb) return 1; } -void cmExprParserHelper::CleanupParser() -{ -} - int cmExprParserHelper::LexInput(char* buf, int maxlen) { // std::cout << "JPLexInput "; diff --git a/Source/cmExprParserHelper.h b/Source/cmExprParserHelper.h index d4d95b4..15e8f3e 100644 --- a/Source/cmExprParserHelper.h +++ b/Source/cmExprParserHelper.h @@ -41,7 +41,6 @@ private: void Print(const char* place, const char* str); - void CleanupParser(); void SetError(std::string errorString); KWIML_INT_int64_t Result; -- cgit v0.12