diff options
author | Rolf Eike Beer <eike@sf-mail.de> | 2017-10-25 15:34:01 (GMT) |
---|---|---|
committer | Rolf Eike Beer <eike@sf-mail.de> | 2017-10-25 17:56:33 (GMT) |
commit | 576c079faadbff2bd5fafcbc9cecc03797625922 (patch) | |
tree | 46c285dd0443d7fdc50b38dae524a765b42bde3f /Source/cmCommandArgumentParserHelper.h | |
parent | 98cb9f3ee98261d0e7a591ba3b1971d49f1a2ee8 (diff) | |
download | CMake-576c079faadbff2bd5fafcbc9cecc03797625922.zip CMake-576c079faadbff2bd5fafcbc9cecc03797625922.tar.gz CMake-576c079faadbff2bd5fafcbc9cecc03797625922.tar.bz2 |
cmCommandArgumentParser: remove the variable tokens from the class
Make them local constants in the lexer file.
Diffstat (limited to 'Source/cmCommandArgumentParserHelper.h')
-rw-r--r-- | Source/cmCommandArgumentParserHelper.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmCommandArgumentParserHelper.h b/Source/cmCommandArgumentParserHelper.h index d0d2db4..098c000 100644 --- a/Source/cmCommandArgumentParserHelper.h +++ b/Source/cmCommandArgumentParserHelper.h @@ -53,13 +53,6 @@ public: void SetRemoveEmpty(bool b) { this->RemoveEmpty = b; } const char* GetError() { return this->ErrorString.c_str(); } - char EmptyVariable[1]; - char DCURLYVariable[3]; - char RCURLYVariable[3]; - char ATVariable[3]; - char DOLLARVariable[3]; - char LCURLYVariable[3]; - char BSLASHVariable[3]; private: std::string::size_type InputBufferPos; |