summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-01-17 17:06:44 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-01-17 17:06:44 +0900
commit7159b97f19d61d4544dfcaf1b10d85f4e0ebb01f (patch)
tree80c93897a578d329e9eff641c6cec5981e04af7b /lib
parent678372ad3c630acba3273ea42e081263269c08a0 (diff)
downloadtdevelop-7159b97f19d61d4544dfcaf1b10d85f4e0ebb01f.tar.gz
tdevelop-7159b97f19d61d4544dfcaf1b10d85f4e0ebb01f.zip
Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'lib')
-rw-r--r--lib/antlr/README1
-rw-r--r--lib/antlr/antlr/CharScanner.h2
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));