From dd31807230b60030e12adbd0ebdd59ed6dfacc00 Mon Sep 17 00:00:00 2001 From: David Olsen Date: Wed, 26 Jul 2017 13:10:10 -0700 Subject: [PATCH] Update PGI C++ compiler support Remove an old PGI-specific workaround for intptr_t. The workaround is no longer necessary and now causes compilation errors. --- include/boost/cstdint.hpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/boost/cstdint.hpp b/include/boost/cstdint.hpp index 31b67417..e7799742 100644 --- a/include/boost/cstdint.hpp +++ b/include/boost/cstdint.hpp @@ -367,9 +367,6 @@ namespace boost #include #endif -// PGI seems to not support intptr_t/uintptr_t properly. BOOST_HAS_STDINT_H is not defined for this compiler by Boost.Config. -#if !defined(__PGIC__) - #if (defined(BOOST_WINDOWS) && !defined(_WIN32_WCE)) \ || (defined(_XOPEN_UNIX) && (_XOPEN_UNIX+0 > 0) && !defined(__UCLIBC__)) \ || defined(__CYGWIN__) \ @@ -393,8 +390,6 @@ namespace boost { #endif -#endif // !defined(__PGIC__) - #endif // BOOST_CSTDINT_HPP