New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
config.hpp in vendors/XIOS/current/extern/boost/include/boost/type_traits – NEMO

source: vendors/XIOS/current/extern/boost/include/boost/type_traits/config.hpp @ 3428

Last change on this file since 3428 was 3428, checked in by rblod, 12 years ago

importing initial XIOS vendor drop

File size: 2.5 KB
Line 
1
2//  (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000.
3//  Use, modification and distribution are subject to the Boost Software License,
4//  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5//  http://www.boost.org/LICENSE_1_0.txt).
6//
7//  See http://www.boost.org/libs/type_traits for most recent version including documentation.
8
9#ifndef BOOST_TT_CONFIG_HPP_INCLUDED
10#define BOOST_TT_CONFIG_HPP_INCLUDED
11
12#ifndef BOOST_CONFIG_HPP
13#include <boost/config.hpp>
14#endif
15
16#include <boost/detail/workaround.hpp>
17
18//
19// whenever we have a conversion function with elipses
20// it needs to be declared __cdecl to suppress compiler
21// warnings from MS and Borland compilers (this *must*
22// appear before we include is_same.hpp below):
23#if defined(BOOST_MSVC) || (defined(__BORLANDC__) && !defined(BOOST_DISABLE_WIN32))
24#   define BOOST_TT_DECL __cdecl
25#else
26#   define BOOST_TT_DECL /**/
27#endif
28
29# if (BOOST_WORKAROUND(__MWERKS__, < 0x3000)                         \
30    || BOOST_WORKAROUND(BOOST_MSVC, <= 1301)                        \
31    || !defined(__EDG_VERSION__) && BOOST_WORKAROUND(__GNUC__, < 3) \
32    || BOOST_WORKAROUND(__IBMCPP__, < 600 )                         \
33    || BOOST_WORKAROUND(__BORLANDC__, < 0x5A0)                      \
34    || defined(__ghs)                                               \
35    || BOOST_WORKAROUND(__HP_aCC, < 60700)           \
36    || BOOST_WORKAROUND(MPW_CPLUS, BOOST_TESTED_AT(0x890))          \
37    || BOOST_WORKAROUND(__SUNPRO_CC, BOOST_TESTED_AT(0x580)))       \
38    && defined(BOOST_NO_IS_ABSTRACT)
39
40#   define BOOST_TT_NO_CONFORMING_IS_CLASS_IMPLEMENTATION 1
41
42#endif
43
44#ifndef BOOST_TT_NO_CONFORMING_IS_CLASS_IMPLEMENTATION
45# define BOOST_TT_HAS_CONFORMING_IS_CLASS_IMPLEMENTATION 1
46#endif
47
48//
49// Define BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING
50// when we can't test for function types with elipsis:
51//
52#if BOOST_WORKAROUND(__GNUC__, < 3)
53#  define BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING
54#endif
55
56//
57// define BOOST_TT_TEST_MS_FUNC_SIGS
58// when we want to test __stdcall etc function types with is_function etc
59// (Note, does not work with Borland, even though it does support __stdcall etc):
60//
61#if defined(_MSC_EXTENSIONS) && !defined(__BORLANDC__)
62#  define BOOST_TT_TEST_MS_FUNC_SIGS
63#endif
64
65//
66// define BOOST_TT_NO_CV_FUNC_TEST
67// if tests for cv-qualified member functions don't
68// work in is_member_function_pointer
69//
70#if BOOST_WORKAROUND(__MWERKS__, < 0x3000) || BOOST_WORKAROUND(__IBMCPP__, <= 600)
71#  define BOOST_TT_NO_CV_FUNC_TEST
72#endif
73
74#endif // BOOST_TT_CONFIG_HPP_INCLUDED
75
76
Note: See TracBrowser for help on using the repository browser.