Chris@16
|
1
|
Chris@16
|
2 #ifndef BOOST_MPL_AUX_CONFIG_DTP_HPP_INCLUDED
|
Chris@16
|
3 #define BOOST_MPL_AUX_CONFIG_DTP_HPP_INCLUDED
|
Chris@16
|
4
|
Chris@16
|
5 // Copyright Aleksey Gurtovoy 2001-2004
|
Chris@16
|
6 //
|
Chris@16
|
7 // Distributed under the Boost Software License, Version 1.0.
|
Chris@16
|
8 // (See accompanying file LICENSE_1_0.txt or copy at
|
Chris@16
|
9 // http://www.boost.org/LICENSE_1_0.txt)
|
Chris@16
|
10 //
|
Chris@16
|
11 // See http://www.boost.org/libs/mpl for documentation.
|
Chris@16
|
12
|
Chris@101
|
13 // $Id$
|
Chris@101
|
14 // $Date$
|
Chris@101
|
15 // $Revision$
|
Chris@16
|
16
|
Chris@16
|
17 #include <boost/mpl/aux_/config/workaround.hpp>
|
Chris@16
|
18
|
Chris@16
|
19 // MWCW 7.x-8.0 "losts" default template parameters of nested class
|
Chris@16
|
20 // templates when their owner classes are passed as arguments to other
|
Chris@16
|
21 // templates; Borland 5.5.1 "forgets" them from the very beginning (if
|
Chris@16
|
22 // the owner class is a class template), and Borland 5.6 isn't even
|
Chris@16
|
23 // able to compile a definition of nested class template with DTP
|
Chris@16
|
24
|
Chris@16
|
25 #if !defined(BOOST_MPL_CFG_NO_DEFAULT_PARAMETERS_IN_NESTED_TEMPLATES) \
|
Chris@16
|
26 && !defined(BOOST_MPL_PREPROCESSING_MODE) \
|
Chris@16
|
27 && BOOST_WORKAROUND(__BORLANDC__, >= 0x560) \
|
Chris@16
|
28 && BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x610))
|
Chris@16
|
29
|
Chris@16
|
30 # define BOOST_MPL_CFG_NO_DEFAULT_PARAMETERS_IN_NESTED_TEMPLATES
|
Chris@16
|
31
|
Chris@16
|
32 #endif
|
Chris@16
|
33
|
Chris@16
|
34
|
Chris@16
|
35 #if !defined(BOOST_MPL_CFG_BROKEN_DEFAULT_PARAMETERS_IN_NESTED_TEMPLATES) \
|
Chris@16
|
36 && !defined(BOOST_MPL_PREPROCESSING_MODE) \
|
Chris@16
|
37 && ( BOOST_WORKAROUND(__MWERKS__, <= 0x3001) \
|
Chris@16
|
38 || BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x610)) \
|
Chris@16
|
39 || defined(BOOST_MPL_CFG_NO_DEFAULT_PARAMETERS_IN_NESTED_TEMPLATES) \
|
Chris@16
|
40 )
|
Chris@16
|
41
|
Chris@16
|
42 # define BOOST_MPL_CFG_BROKEN_DEFAULT_PARAMETERS_IN_NESTED_TEMPLATES
|
Chris@16
|
43
|
Chris@16
|
44 #endif
|
Chris@16
|
45
|
Chris@16
|
46 #endif // BOOST_MPL_AUX_CONFIG_DTP_HPP_INCLUDED
|