~ubuntu-branches/ubuntu/wily/bombono-dvd/wily

« back to all changes in this revision

Viewing changes to libs/boost-lib/boost/preprocessor/config/config.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-11-04 11:46:25 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20101104114625-8xfdhvhpsm51i0nu
Tags: upstream-0.8.0
ImportĀ upstreamĀ versionĀ 0.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
# define BOOST_PP_CONFIG_DMC() 0x0040
25
25
#
26
26
# ifndef BOOST_PP_CONFIG_FLAGS
27
 
#    if defined(__SPIRIT_PP__) || defined(__MWERKS__) && __MWERKS__ >= 0x3200
 
27
#    if defined(__GCCXML__)
 
28
#        define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_STRICT())
 
29
#    elif defined(__WAVE__)
 
30
#        define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_STRICT())
 
31
#    elif defined(__MWERKS__) && __MWERKS__ >= 0x3200
28
32
#        define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_STRICT())
29
33
#    elif defined(__EDG__) || defined(__EDG_VERSION__)
30
 
#        define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_EDG() | BOOST_PP_CONFIG_STRICT())
 
34
#        if defined(_MSC_VER) && __EDG_VERSION__ >= 308
 
35
#            define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_MSVC())
 
36
#        else
 
37
#            define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_EDG() | BOOST_PP_CONFIG_STRICT())
 
38
#        endif
31
39
#    elif defined(__MWERKS__)
32
40
#        define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_MWCC())
33
41
#    elif defined(__DMC__)
34
42
#        define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_DMC())
 
43
#    elif defined(__BORLANDC__) && __BORLANDC__ >= 0x581
 
44
#        define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_STRICT())
35
45
#    elif defined(__BORLANDC__) || defined(__IBMC__) || defined(__IBMCPP__) || defined(__SUNPRO_CC)
36
46
#        define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_BCC())
37
47
#    elif defined(_MSC_VER)