瀏覽代碼

Remove cmExprParserHelper::SetLineFile()

Yury G. Kudryashov 13 年之前
父節點
當前提交
aef248a4ff
共有 2 個文件被更改,包括 0 次插入8 次删除
  1. 0 6
      Source/cmExprParserHelper.cxx
  2. 0 2
      Source/cmExprParserHelper.h

+ 0 - 6
Source/cmExprParserHelper.cxx

@@ -30,12 +30,6 @@ cmExprParserHelper::~cmExprParserHelper()
   this->CleanupParser();
 }
 
-void cmExprParserHelper::SetLineFile(long line, const char* file)
-{
-  this->FileLine = line;
-  this->FileName = file;
-}
-
 int cmExprParserHelper::ParseString(const char* str, int verb)
 {
   if ( !str)

+ 0 - 2
Source/cmExprParserHelper.h

@@ -46,8 +46,6 @@ public:
 
   int GetResult() { return this->Result; }
 
-  void SetLineFile(long line, const char* file);
-
   const char* GetError() { return this->ErrorString.c_str(); }
 
 private: