cmCommandArgumentParserHelper: Re-arrange data.

Size goes from 232 to 216 bytes.
This commit is contained in:
Stephen Kelly 2015-06-07 09:40:57 +02:00
parent 4cd13e80f0
commit db24e41b9d
1 changed files with 4 additions and 4 deletions

View File

@ -80,8 +80,6 @@ private:
std::string::size_type InputBufferPos; std::string::size_type InputBufferPos;
std::string InputBuffer; std::string InputBuffer;
std::vector<char> OutputBuffer; std::vector<char> OutputBuffer;
int CurrentLine;
int Verbose;
void Print(const char* place, const char* str); void Print(const char* place, const char* str);
void SafePrintMissing(const char* str, int line, int cnt); void SafePrintMissing(const char* str, int line, int cnt);
@ -94,12 +92,14 @@ private:
std::vector<char*> Variables; std::vector<char*> Variables;
const cmMakefile* Makefile; const cmMakefile* Makefile;
std::string Result; std::string Result;
std::string ErrorString;
const char* FileName; const char* FileName;
long FileLine;
int CurrentLine;
int Verbose;
bool WarnUninitialized; bool WarnUninitialized;
bool CheckSystemVars; bool CheckSystemVars;
long FileLine;
bool EscapeQuotes; bool EscapeQuotes;
std::string ErrorString;
bool NoEscapeMode; bool NoEscapeMode;
bool ReplaceAtSyntax; bool ReplaceAtSyntax;
bool RemoveEmpty; bool RemoveEmpty;