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 
8 #ifndef BOOST_PREDEF_LIBRARY_STD_MODENA_H
9 #define BOOST_PREDEF_LIBRARY_STD_MODENA_H
10 
11 #include <boost/predef/library/std/_prefix.h>
12 
13 #include <boost/predef/version_number.h>
14 #include <boost/predef/make.h>
15 
16 /* tag::reference[]
17 = `BOOST_LIB_STD_MSIPL`
18 
19 http://modena.us/[Modena Software Lib++] Standard {CPP} Library.
20 
21 [options="header"]
22 |===
23 | {predef_symbol} | {predef_version}
24 
25 | `MSIPL_COMPILE_H` | {predef_detection}
26 | `+__MSIPL_COMPILE_H+` | {predef_detection}
27 |===
28 */ // end::reference[]
29 
30 #define BOOST_LIB_STD_MSIPL BOOST_VERSION_NUMBER_NOT_AVAILABLE
31 
32 #if defined(MSIPL_COMPILE_H) || defined(__MSIPL_COMPILE_H)
33 #   undef BOOST_LIB_STD_MSIPL
34 #   define BOOST_LIB_STD_MSIPL BOOST_VERSION_NUMBER_AVAILABLE
35 #endif
36 
37 #if BOOST_LIB_STD_MSIPL
38 #   define BOOST_LIB_STD_MSIPL_AVAILABLE
39 #endif
40 
41 #define BOOST_LIB_STD_MSIPL_NAME "Modena Software Lib++"
42 
43 #endif
44 
45 #include <boost/predef/detail/test.h>
46 BOOST_PREDEF_DECLARE_TEST(BOOST_LIB_STD_MSIPL,BOOST_LIB_STD_MSIPL_NAME)
47