os/ossrv/ossrv_pub/boost_apis/boost/dynamic_bitset/config.hpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// --------------------------------------------------
sl@0
     2
//
sl@0
     3
// (C) Copyright Chuck Allison and Jeremy Siek 2001 - 2002.
sl@0
     4
// (C) Copyright Gennaro Prota                 2003 - 2004.
sl@0
     5
//
sl@0
     6
// Distributed under the Boost Software License, Version 1.0.
sl@0
     7
//    (See accompanying file LICENSE_1_0.txt or copy at
sl@0
     8
//          http://www.boost.org/LICENSE_1_0.txt)
sl@0
     9
//
sl@0
    10
// -----------------------------------------------------------
sl@0
    11
sl@0
    12
//  See http://www.boost.org/libs/dynamic_bitset for documentation.
sl@0
    13
sl@0
    14
sl@0
    15
#ifndef BOOST_DYNAMIC_BITSET_CONFIG_HPP_GP_20040424
sl@0
    16
#define BOOST_DYNAMIC_BITSET_CONFIG_HPP_GP_20040424
sl@0
    17
sl@0
    18
#include "boost/config.hpp"
sl@0
    19
#include "boost/detail/workaround.hpp"
sl@0
    20
sl@0
    21
// support for pre 3.0 libstdc++ - thanks Phil Edwards!
sl@0
    22
#if defined (__STL_CONFIG_H) && !defined (__STL_USE_NEW_IOSTREAMS)
sl@0
    23
# define BOOST_OLD_IOSTREAMS
sl@0
    24
#endif
sl@0
    25
sl@0
    26
// this should be in the config system some day
sl@0
    27
// see http://lists.boost.org/MailArchives/boost/msg62291.php
sl@0
    28
#define BOOST_DYNAMIC_BITSET_GNUC_VERSION  (  __GNUC__       * 100 * 100     \
sl@0
    29
                                            + __GNUC_MINOR__ * 100)
sl@0
    30
sl@0
    31
// workaround for gcc bug c++/8419 - gps
sl@0
    32
sl@0
    33
namespace boost { namespace detail {
sl@0
    34
    template <typename T> T make_non_const(T t) { return t; }
sl@0
    35
}}
sl@0
    36
sl@0
    37
#if defined(__GNUC__) && BOOST_WORKAROUND(BOOST_DYNAMIC_BITSET_GNUC_VERSION, \
sl@0
    38
                                          BOOST_TESTED_AT(30300))
sl@0
    39
# define BOOST_DYNAMIC_BITSET_WRAP_CONSTANT(expr) \
sl@0
    40
         (boost::detail::make_non_const(expr))
sl@0
    41
#else
sl@0
    42
# define BOOST_DYNAMIC_BITSET_WRAP_CONSTANT(expr) (expr)
sl@0
    43
#endif
sl@0
    44
sl@0
    45
//
sl@0
    46
#if (defined __BORLANDC__ && BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)))  \
sl@0
    47
                             || (defined BOOST_NO_MEMBER_TEMPLATE_FRIENDS)
sl@0
    48
#define BOOST_DYNAMIC_BITSET_DONT_USE_FRIENDS
sl@0
    49
#endif
sl@0
    50
sl@0
    51
// if we can't use friends then private members are exposed
sl@0
    52
//
sl@0
    53
#if defined(BOOST_DYNAMIC_BITSET_DONT_USE_FRIENDS)
sl@0
    54
#define BOOST_DYNAMIC_BITSET_PRIVATE public
sl@0
    55
#else
sl@0
    56
#define BOOST_DYNAMIC_BITSET_PRIVATE private
sl@0
    57
#endif
sl@0
    58
sl@0
    59
// A couple of macros to cope with libraries without locale
sl@0
    60
// support. The first macro must be used to declare a reference
sl@0
    61
// to a ctype facet. The second one to widen a char by using
sl@0
    62
// that ctype object. If facets and locales aren't available
sl@0
    63
// the first macro is a no-op and the second one just expands
sl@0
    64
// to its parameter c.
sl@0
    65
//
sl@0
    66
#if defined (BOOST_USE_FACET)
sl@0
    67
sl@0
    68
#define BOOST_DYNAMIC_BITSET_CTYPE_FACET(ch, name, loc)     \
sl@0
    69
            const std::ctype<ch> & name =                   \
sl@0
    70
            BOOST_USE_FACET(std::ctype<ch>, loc)         /**/
sl@0
    71
sl@0
    72
#define BOOST_DYNAMIC_BITSET_WIDEN_CHAR(fac, c)             \
sl@0
    73
           (fac.widen(c))
sl@0
    74
#else
sl@0
    75
sl@0
    76
#define BOOST_DYNAMIC_BITSET_CTYPE_FACET(ch, name, loc) /**/
sl@0
    77
#define BOOST_DYNAMIC_BITSET_WIDEN_CHAR(fac, c)          c
sl@0
    78
sl@0
    79
#endif
sl@0
    80
sl@0
    81
#endif // include guard