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.
This commit is contained in:
David Olsen
2017-07-26 13:10:10 -07:00
parent 8f09bc2846
commit dd31807230

View File

@ -367,9 +367,6 @@ namespace boost
#include <stddef.h> #include <stddef.h>
#endif #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)) \ #if (defined(BOOST_WINDOWS) && !defined(_WIN32_WCE)) \
|| (defined(_XOPEN_UNIX) && (_XOPEN_UNIX+0 > 0) && !defined(__UCLIBC__)) \ || (defined(_XOPEN_UNIX) && (_XOPEN_UNIX+0 > 0) && !defined(__UCLIBC__)) \
|| defined(__CYGWIN__) \ || defined(__CYGWIN__) \
@ -393,8 +390,6 @@ namespace boost {
#endif #endif
#endif // !defined(__PGIC__)
#endif // BOOST_CSTDINT_HPP #endif // BOOST_CSTDINT_HPP