Merge topic 'remove-unused-members'

aef248a Remove cmExprParserHelper::SetLineFile()
e266571 Remove UnionsAvailable member from 2 classes
This commit is contained in:
David Cole 2012-03-06 15:27:08 -05:00 committed by CMake Topic Stage
commit 7fbd323f80
3 changed files with 0 additions and 10 deletions

View File

@ -81,7 +81,6 @@ private:
cmStdString InputBuffer;
std::vector<char> OutputBuffer;
int CurrentLine;
int UnionsAvailable;
int Verbose;
void Print(const char* place, const char* str);

View File

@ -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)

View File

@ -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:
@ -55,7 +53,6 @@ private:
cmStdString InputBuffer;
std::vector<char> OutputBuffer;
int CurrentLine;
int UnionsAvailable;
int Verbose;
void Print(const char* place, const char* str);