vacpp.h 1023 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. Copyright Rene Rivera 2008-2015
  3. Distributed under the Boost Software License, Version 1.0.
  4. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt)
  6. */
  7. #ifndef BOOST_PREDEF_LIBRARY_STD_VACPP_H
  8. #define BOOST_PREDEF_LIBRARY_STD_VACPP_H
  9. #include <boost/predef/library/std/_prefix.h>
  10. #include <boost/predef/version_number.h>
  11. #include <boost/predef/make.h>
  12. /*`
  13. [heading `BOOST_LIB_STD_IBM`]
  14. [@http://www.ibm.com/software/awdtools/xlcpp/ IBM VACPP Standard C++] library.
  15. [table
  16. [[__predef_symbol__] [__predef_version__]]
  17. [[`__IBMCPP__`] [__predef_detection__]]
  18. ]
  19. */
  20. #define BOOST_LIB_STD_IBM BOOST_VERSION_NUMBER_NOT_AVAILABLE
  21. #if defined(__IBMCPP__)
  22. # undef BOOST_LIB_STD_IBM
  23. # define BOOST_LIB_STD_IBM BOOST_VERSION_NUMBER_AVAILABLE
  24. #endif
  25. #if BOOST_LIB_STD_IBM
  26. # define BOOST_LIB_STD_IBM_AVAILABLE
  27. #endif
  28. #define BOOST_LIB_STD_IBM_NAME "IBM VACPP"
  29. #endif
  30. #include <boost/predef/detail/test.h>
  31. BOOST_PREDEF_DECLARE_TEST(BOOST_LIB_STD_IBM,BOOST_LIB_STD_IBM_NAME)