diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-03-16 19:15:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-16 19:15:22 (GMT) |
commit | 4b44e7e07f9c475daa3becba362ae4cd81b74ea3 (patch) | |
tree | 7705c3d085160d4cc1a47ce85da6d0d10cdb12ae /qtools | |
parent | 00d6d827b5230273ad16e25c10053ef005171b51 (diff) | |
parent | 0ba6f4c79ca6c38c6649afe279ed49f14c77f449 (diff) | |
download | Doxygen-4b44e7e07f9c475daa3becba362ae4cd81b74ea3.zip Doxygen-4b44e7e07f9c475daa3becba362ae4cd81b74ea3.tar.gz Doxygen-4b44e7e07f9c475daa3becba362ae4cd81b74ea3.tar.bz2 |
Merge pull request #6876 from shawnanastasio/fix_aix_build
qglobal.h: Fix build on AIX
Diffstat (limited to 'qtools')
-rw-r--r-- | qtools/qglobal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qtools/qglobal.h b/qtools/qglobal.h index c3f7594..8512f41 100644 --- a/qtools/qglobal.h +++ b/qtools/qglobal.h @@ -357,7 +357,9 @@ typedef const char *pcchar; typedef __int64 int64; typedef unsigned __int64 uint64; #else +#if !defined(_OS_AIX_) || !defined(_H_INTTYPES) typedef long long int64; +#endif typedef unsigned long long uint64; #endif |