]> git.lyx.org Git - lyx.git/blob - boost/boost/type_traits/config.hpp
update to boost 1.30.1
[lyx.git] / boost / boost / type_traits / config.hpp
1
2 // (C) Copyright Steve Cleary, Beman Dawes, Howard Hinnant & John Maddock 2000.
3 // Permission to copy, use, modify, sell and distribute this software is 
4 // granted provided this copyright notice appears in all copies. This software 
5 // is provided "as is" without express or implied warranty, and with no claim 
6 // as to its suitability for any purpose.
7 //
8 // See http://www.boost.org for most recent version including documentation.
9
10 #ifndef BOOST_TT_CONFIG_HPP_INCLUDED
11 #define BOOST_TT_CONFIG_HPP_INCLUDED
12
13 #ifndef BOOST_CONFIG_HPP
14 #include "boost/config.hpp"
15 #endif
16
17 //
18 // whenever we have a conversion function with elipses
19 // it needs to be declared __cdecl to suppress compiler
20 // warnings from MS and Borland compilers (this *must*
21 // appear before we include is_same.hpp below):
22 #if defined(BOOST_MSVC) || defined(__BORLANDC__)
23 #   define BOOST_TT_DECL __cdecl
24 #else
25 #   define BOOST_TT_DECL /**/
26 #endif
27
28 # if (defined(__MWERKS__) && __MWERKS__ >= 0x3000) || (defined(BOOST_MSVC) && (BOOST_MSVC > 1301)) || defined(BOOST_NO_COMPILER_CONFIG)
29 #   define BOOST_TT_HAS_CONFORMING_IS_CLASS_IMPLEMENTATION
30 #endif
31
32 #endif // BOOST_TT_CONFIG_HPP_INCLUDED
33
34