annotate DEPENDENCIES/generic/include/boost/predef/library/std/cxx.h @ 125:34e428693f5d vext

Vext -> Repoint
author Chris Cannam
date Thu, 14 Jun 2018 11:15:39 +0100
parents c530137014c0
children
rev   line source
Chris@16 1 /*
Chris@101 2 Copyright Rene Rivera 2011-2013
Chris@16 3 Distributed under the Boost Software License, Version 1.0.
Chris@16 4 (See accompanying file LICENSE_1_0.txt or copy at
Chris@16 5 http://www.boost.org/LICENSE_1_0.txt)
Chris@16 6 */
Chris@16 7
Chris@16 8 #ifndef BOOST_PREDEF_LIBRARY_STD_CXX_H
Chris@16 9 #define BOOST_PREDEF_LIBRARY_STD_CXX_H
Chris@16 10
Chris@16 11 #include <boost/predef/library/std/_prefix.h>
Chris@16 12
Chris@16 13 #include <boost/predef/version_number.h>
Chris@16 14 #include <boost/predef/make.h>
Chris@16 15
Chris@16 16 /*`
Chris@16 17 [heading `BOOST_LIB_STD_CXX`]
Chris@16 18
Chris@16 19 [@http://libcxx.llvm.org/ libc++] C++ Standard Library.
Chris@16 20
Chris@16 21 [table
Chris@16 22 [[__predef_symbol__] [__predef_version__]]
Chris@16 23
Chris@16 24 [[`_LIBCPP_VERSION`] [__predef_detection__]]
Chris@16 25
Chris@16 26 [[`_LIBCPP_VERSION`] [V.0.P]]
Chris@16 27 ]
Chris@16 28 */
Chris@16 29
Chris@16 30 #define BOOST_LIB_STD_CXX BOOST_VERSION_NUMBER_NOT_AVAILABLE
Chris@16 31
Chris@16 32 #if defined(_LIBCPP_VERSION)
Chris@16 33 # undef BOOST_LIB_STD_CXX
Chris@16 34 # define BOOST_LIB_STD_CXX BOOST_PREDEF_MAKE_10_VPPP(_LIBCPP_VERSION)
Chris@16 35 #endif
Chris@16 36
Chris@16 37 #if BOOST_LIB_STD_CXX
Chris@16 38 # define BOOST_LIB_STD_CXX_AVAILABLE
Chris@16 39 #endif
Chris@16 40
Chris@16 41 #define BOOST_LIB_STD_CXX_NAME "libc++"
Chris@16 42
Chris@16 43 #include <boost/predef/detail/test.h>
Chris@16 44 BOOST_PREDEF_DECLARE_TEST(BOOST_LIB_STD_CXX,BOOST_LIB_STD_CXX_NAME)
Chris@16 45
Chris@16 46
Chris@16 47 #endif