diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/antlr/README | 1 | ||||
| -rw-r--r-- | lib/antlr/antlr/CharScanner.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/lib/antlr/README b/lib/antlr/README index 1f6d902d..2fbb1645 100644 --- a/lib/antlr/README +++ b/lib/antlr/README @@ -36,7 +36,6 @@ egcs-1.1.2 Solaris 2.6,7 2.7.1a2 egcs-1.1.2 Linux 2.2, Solaris 2.6 2.7.1a2 gcc-2.95.2 Linux 2.2, Solaris 2.6,7 2.7.1a2 gcc-2.96 (20000527) Solaris 2.6 2.7.1a2 -aCC A.01.21 HP-UX 10.20 2.7.0 no! Visual C++ 6.0 PC 2.7.1a2 (warnings) Intel C++ 4.0 NT 4.0 2.7.0 Borland 5.0 NT 4.0 2.7.0 diff --git a/lib/antlr/antlr/CharScanner.h b/lib/antlr/antlr/CharScanner.h index 4a0816a8..eacb2ec1 100644 --- a/lib/antlr/antlr/CharScanner.h +++ b/lib/antlr/antlr/CharScanner.h @@ -435,7 +435,7 @@ public: /// Override this method to get more specific case handling virtual int toLower(int c) const { - // test on EOF_CHAR for buggy (?) STLPort tolower (or HPUX tolower?) + // test on EOF_CHAR for buggy STLPort tolower // also VC++ 6.0 does this. (see fix 422 (is reverted by this fix) // this one is more structural. Maybe make this configurable. return (c == EOF_CHAR ? EOF_CHAR : tolower(c)); |
