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-18 00:01:21 +0900
commit286d01b75d82187ae60e630dcec0a260c0412337 (patch)
tree65392000c0f036a84858ede0c47bfd8b549bfb43 /lib
parent7010b50044b0eaa8bb6e8c4ce6ba9310e4eb3288 (diff)
downloadtdevelop-286d01b75d82187ae60e630dcec0a260c0412337.tar.gz
tdevelop-286d01b75d82187ae60e630dcec0a260c0412337.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> (cherry picked from commit 7159b97f19d61d4544dfcaf1b10d85f4e0ebb01f)
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));