diff options
author | ogre <olagrottvik@gmail.com> | 2017-05-09 13:19:51 (GMT) |
---|---|---|
committer | Ola <ogre@localhost.localdomain> | 2017-05-09 20:36:25 (GMT) |
commit | 6c387a6be9128ced0b89f6fc75946cd1a85096fb (patch) | |
tree | 7eb3569a71e3da78e86bc3823996d7537a49eac6 /vhdlparser/Token.h | |
parent | af711e8eeea14a42d386beef5271af74a408d7e0 (diff) | |
download | Doxygen-6c387a6be9128ced0b89f6fc75946cd1a85096fb.zip Doxygen-6c387a6be9128ced0b89f6fc75946cd1a85096fb.tar.gz Doxygen-6c387a6be9128ced0b89f6fc75946cd1a85096fb.tar.bz2 |
fixes vhdl literal bug
Diffstat (limited to 'vhdlparser/Token.h')
-rw-r--r-- | vhdlparser/Token.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/vhdlparser/Token.h b/vhdlparser/Token.h index 040899e..5fce69f 100644 --- a/vhdlparser/Token.h +++ b/vhdlparser/Token.h @@ -1,4 +1,4 @@ -/* Generated By:JavaCC: Do not edit this line. Token.h Version 6.2 */ +/* Generated By:JavaCC: Do not edit this line. Token.h Version 6.0 */ /* JavaCCOptions:STATIC=false,SUPPORT_CLASS_VISIBILITY_PUBLIC=true,TOKEN_INCLUDES=,TOKEN_EXTENDS= */ #ifndef TOKEN_H #define TOKEN_H @@ -86,13 +86,12 @@ class Token */ Token(int kind, JAVACC_STRING_TYPE image); - virtual ~Token(); - /** * Returns the image. */ JAVACC_STRING_TYPE toString(); + public: virtual ~Token(); /** * Returns a new Token void *, by default. However, if you want, you @@ -114,4 +113,4 @@ class Token } } #endif -/* JavaCC - OriginalChecksum=4748c3d6443aa3445d3c95ab54f14c2a (do not edit this line) */ +/* JavaCC - OriginalChecksum=2f5eb1c937adc983dfa2008c4fe383a7 (do not edit this line) */ |