summaryrefslogtreecommitdiffstats
path: root/src/tools/tqdatastream.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-01-17 19:34:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-01-17 19:34:22 +0900
commit2080def64c64099ea7685d903d070e028a8cb916 (patch)
treef645ca3060a53cae9729cf3e9256da820e534e35 /src/tools/tqdatastream.cpp
parent37a07263c70308f7ddef4aac747446d5ede82374 (diff)
downloadtqt-2080def64c64099ea7685d903d070e028a8cb916.tar.gz
tqt-2080def64c64099ea7685d903d070e028a8cb916.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 'src/tools/tqdatastream.cpp')
-rw-r--r--src/tools/tqdatastream.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/tools/tqdatastream.cpp b/src/tools/tqdatastream.cpp
index 506e6dd04..30ee6e37e 100644
--- a/src/tools/tqdatastream.cpp
+++ b/src/tools/tqdatastream.cpp
@@ -487,10 +487,6 @@ void TQDataStream::setByteOrder( int bo )
TQDataStream read functions
*****************************************************************************/
-#if defined(Q_OS_HPUX) && !defined(__LP64__)
-extern "C" long long __strtoll( const char *, char**, int );
-#endif
-
static TQ_INT64 read_int_ascii( TQDataStream *s )
{
int n = 0;
@@ -511,8 +507,6 @@ static TQ_INT64 read_int_ascii( TQDataStream *s )
return strtol( buf, (char**)0, 10 );
# elif defined(Q_OS_WIN)
return _atoi64( buf );
-# elif defined(Q_OS_HPUX)
- return __strtoll( buf, (char**)0, 10 );
# elif defined(Q_OS_MACX) && defined(QT_MACOSX_VERSION) && QT_MACOSX_VERSION < 0x1020
return strtoq( buf, (char**)0, 10 );
# else