Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 210427 | Differences between
and this patch

Collapse All | Expand All

(-)boost_1_34_1-ORIGINAL/boost/archive/polymorphic_iarchive.hpp (+1 lines)
Lines 17-22 Link Here
17
//  See http://www.boost.org for updates, documentation, and revision history.
17
//  See http://www.boost.org for updates, documentation, and revision history.
18
18
19
#include <cstddef> // std::size_t
19
#include <cstddef> // std::size_t
20
#include <climits>
20
#include <boost/config.hpp>
21
#include <boost/config.hpp>
21
22
22
#if defined(BOOST_NO_STDC_NAMESPACE)
23
#if defined(BOOST_NO_STDC_NAMESPACE)
(-)boost_1_34_1-ORIGINAL/boost/archive/polymorphic_oarchive.hpp (+1 lines)
Lines 17-22 Link Here
17
//  See http://www.boost.org for updates, documentation, and revision history.
17
//  See http://www.boost.org for updates, documentation, and revision history.
18
18
19
#include <cstddef> // size_t
19
#include <cstddef> // size_t
20
#include <climits>
20
#include <string>
21
#include <string>
21
22
22
#include <boost/config.hpp>
23
#include <boost/config.hpp>
(-)boost_1_34_1-ORIGINAL/boost/date_time/date_facet.hpp (-1 / +1 lines)
Lines 429-435 Link Here
429
    typedef std::basic_string<CharT> string_type;
429
    typedef std::basic_string<CharT> string_type;
430
    typedef CharT                    char_type;
430
    typedef CharT                    char_type;
431
    typedef boost::date_time::period_parser<date_type, CharT>  period_parser_type;
431
    typedef boost::date_time::period_parser<date_type, CharT>  period_parser_type;
432
    typedef special_values_parser<date_type,CharT> special_values_parser_type; 
432
    typedef boost::date_time::special_values_parser<date_type,CharT> special_values_parser_type; 
433
    typedef std::vector<std::basic_string<CharT> > input_collection_type;
433
    typedef std::vector<std::basic_string<CharT> > input_collection_type;
434
    typedef format_date_parser<date_type, CharT> format_date_parser_type;
434
    typedef format_date_parser<date_type, CharT> format_date_parser_type;
435
    // date_generators stuff goes here
435
    // date_generators stuff goes here
(-)boost_1_34_1-ORIGINAL/boost/date_time/tz_db_base.hpp (-1 / +1 lines)
Lines 158-164 Link Here
158
      typedef typename time_zone_type::base_type time_zone_base_type;
158
      typedef typename time_zone_type::base_type time_zone_base_type;
159
      typedef typename time_zone_type::time_duration_type time_duration_type;
159
      typedef typename time_zone_type::time_duration_type time_duration_type;
160
      typedef time_zone_names_base<char_type> time_zone_names;
160
      typedef time_zone_names_base<char_type> time_zone_names;
161
      typedef dst_adjustment_offsets<time_duration_type> dst_adjustment_offsets;
161
      typedef boost::date_time::dst_adjustment_offsets<time_duration_type> dst_adjustment_offsets;
162
      typedef std::basic_string<char_type> string_type;
162
      typedef std::basic_string<char_type> string_type;
163
163
164
      //! Constructs an empty database
164
      //! Constructs an empty database
(-)boost_1_34_1-ORIGINAL/boost/mpl/zip_view.hpp (-3 / +3 lines)
Lines 37-43 Link Here
37
    typedef zip_iterator<
37
    typedef zip_iterator<
38
          typename transform1<
38
          typename transform1<
39
                IteratorSeq
39
                IteratorSeq
40
              , next<_1>
40
              , boost::mpl::next<_1>
41
            >::type
41
            >::type
42
        > next;
42
        > next;
43
};
43
};
Lines 48-55 Link Here
48
struct zip_view
48
struct zip_view
49
{
49
{
50
 private:
50
 private:
51
    typedef typename transform1< Sequences, begin<_1> >::type first_ones_;
51
    typedef typename transform1< Sequences, boost::mpl::begin<_1> >::type first_ones_;
52
    typedef typename transform1< Sequences, end<_1> >::type last_ones_;
52
    typedef typename transform1< Sequences, boost::mpl::end<_1> >::type last_ones_;
53
    
53
    
54
 public:
54
 public:
55
    typedef nested_begin_end_tag tag;
55
    typedef nested_begin_end_tag tag;
(-)boost_1_34_1-ORIGINAL/boost/python/detail/def_helper.hpp (-1 / +1 lines)
Lines 155-161 Link Here
155
          , T3 const&
155
          , T3 const&
156
          , T4 const&
156
          , T4 const&
157
          , default_call_policies
157
          , default_call_policies
158
          , keywords<0>
158
          , boost::python::detail::keywords<0>
159
          , char const*
159
          , char const*
160
          , void(not_specified::*)()   // A function pointer type which is never an
160
          , void(not_specified::*)()   // A function pointer type which is never an
161
                                       // appropriate default implementation
161
                                       // appropriate default implementation
(-)boost_1_34_1-ORIGINAL/boost/regex/v4/basic_regex_creator.hpp (+2 lines)
Lines 24-29 Link Here
24
#  include BOOST_ABI_PREFIX
24
#  include BOOST_ABI_PREFIX
25
#endif
25
#endif
26
26
27
#include <climits>
28
27
namespace boost{
29
namespace boost{
28
30
29
namespace re_detail{
31
namespace re_detail{
(-)boost_1_34_1-ORIGINAL/boost/regex/v4/basic_regex.hpp (+2 lines)
Lines 23-28 Link Here
23
#  include BOOST_ABI_PREFIX
23
#  include BOOST_ABI_PREFIX
24
#endif
24
#endif
25
25
26
#include <climits>
27
26
namespace boost{
28
namespace boost{
27
#ifdef BOOST_MSVC
29
#ifdef BOOST_MSVC
28
#pragma warning(push)
30
#pragma warning(push)
(-)boost_1_34_1-ORIGINAL/boost/regex/v4/basic_regex_parser.hpp (+2 lines)
Lines 23-28 Link Here
23
#  include BOOST_ABI_PREFIX
23
#  include BOOST_ABI_PREFIX
24
#endif
24
#endif
25
25
26
#include <climits>
27
26
namespace boost{
28
namespace boost{
27
namespace re_detail{
29
namespace re_detail{
28
30
(-)boost_1_34_1-ORIGINAL/boost/regex/v4/cpp_regex_traits.hpp (+1 lines)
Lines 41-46 Link Here
41
41
42
#include <istream>
42
#include <istream>
43
#include <ios>
43
#include <ios>
44
#include <climits>
44
45
45
#ifdef BOOST_HAS_ABI_HEADERS
46
#ifdef BOOST_HAS_ABI_HEADERS
46
#  include BOOST_ABI_PREFIX
47
#  include BOOST_ABI_PREFIX
(-)boost_1_34_1-ORIGINAL/boost/regex/v4/perl_matcher.hpp (+2 lines)
Lines 18-23 Link Here
18
#  include BOOST_ABI_PREFIX
18
#  include BOOST_ABI_PREFIX
19
#endif
19
#endif
20
20
21
#include <climits>
22
21
namespace boost{
23
namespace boost{
22
namespace re_detail{
24
namespace re_detail{
23
25
(-)boost_1_34_1-ORIGINAL/boost/regex/v4/regex_split.hpp (+2 lines)
Lines 21-26 Link Here
21
#ifndef BOOST_REGEX_SPLIT_HPP
21
#ifndef BOOST_REGEX_SPLIT_HPP
22
#define BOOST_REGEX_SPLIT_HPP
22
#define BOOST_REGEX_SPLIT_HPP
23
23
24
#include <climits>
25
24
namespace boost{
26
namespace boost{
25
27
26
#ifdef BOOST_HAS_ABI_HEADERS
28
#ifdef BOOST_HAS_ABI_HEADERS
(-)boost_1_34_1-ORIGINAL/boost/regex/v4/states.hpp (+2 lines)
Lines 23-28 Link Here
23
#  include BOOST_ABI_PREFIX
23
#  include BOOST_ABI_PREFIX
24
#endif
24
#endif
25
25
26
#include <climits>
27
26
namespace boost{
28
namespace boost{
27
namespace re_detail{
29
namespace re_detail{
28
30
(-)boost_1_34_1-ORIGINAL/boost/serialization/collection_traits.hpp (+1 lines)
Lines 22-27 Link Here
22
// compiles recognize the same set of primitive types, the possibility
22
// compiles recognize the same set of primitive types, the possibility
23
// exists for archives to be non-portable if class information for primitive
23
// exists for archives to be non-portable if class information for primitive
24
// types is included.  This is addressed by the following macros.
24
// types is included.  This is addressed by the following macros.
25
#include <climits>
25
#include <boost/config.hpp>
26
#include <boost/config.hpp>
26
#include <boost/mpl/integral_c.hpp>
27
#include <boost/mpl/integral_c.hpp>
27
#include <boost/mpl/integral_c_tag.hpp>
28
#include <boost/mpl/integral_c_tag.hpp>
(-)boost_1_34_1-ORIGINAL/boost/spirit/phoenix/operators.hpp (+1 lines)
Lines 24-29 Link Here
24
#include <boost/spirit/phoenix/composite.hpp>
24
#include <boost/spirit/phoenix/composite.hpp>
25
#include <boost/config.hpp>
25
#include <boost/config.hpp>
26
#include <boost/mpl/if.hpp>
26
#include <boost/mpl/if.hpp>
27
#include <climits>
27
28
28
///////////////////////////////////////////////////////////////////////////////
29
///////////////////////////////////////////////////////////////////////////////
29
namespace phoenix {
30
namespace phoenix {
(-)boost_1_34_1-ORIGINAL/boost/spirit/tree/impl/tree_to_xml.ipp (+1 lines)
Lines 14-19 Link Here
14
#include <cstdio>
14
#include <cstdio>
15
#include <cstdarg>
15
#include <cstdarg>
16
#include <locale>
16
#include <locale>
17
#include <cstring>
17
18
18
#include <map>
19
#include <map>
19
#include <iostream>
20
#include <iostream>
(-)boost_1_34_1-ORIGINAL/boost/test/test_tools.hpp (+1 lines)
Lines 42-47 Link Here
42
#include <boost/mpl/or.hpp>
42
#include <boost/mpl/or.hpp>
43
43
44
// STL
44
// STL
45
#include <climits>
45
#include <cstddef>          // for std::size_t
46
#include <cstddef>          // for std::size_t
46
#include <iosfwd>
47
#include <iosfwd>
47
48
(-)boost_1_34_1-ORIGINAL/boost/wave/cpplexer/re2clex/cpp_re2c_lexer.hpp (+1 lines)
Lines 16-21 Link Here
16
#include <string>
16
#include <string>
17
#include <cstdio>
17
#include <cstdio>
18
#include <cstdarg>
18
#include <cstdarg>
19
#include <cstring>
19
#if defined(BOOST_SPIRIT_DEBUG)
20
#if defined(BOOST_SPIRIT_DEBUG)
20
#include <iostream>
21
#include <iostream>
21
#endif // defined(BOOST_SPIRIT_DEBUG)
22
#endif // defined(BOOST_SPIRIT_DEBUG)
(-)boost_1_34_1-ORIGINAL/boost/wave/util/flex_string.hpp (+1 lines)
Lines 94-99 Link Here
94
#include <limits>
94
#include <limits>
95
#include <stdexcept>
95
#include <stdexcept>
96
#include <cstddef>
96
#include <cstddef>
97
#include <cstring>
97
98
98
// this must occur after all of the includes and before any code appears
99
// this must occur after all of the includes and before any code appears
99
#ifdef BOOST_HAS_ABI_HEADERS
100
#ifdef BOOST_HAS_ABI_HEADERS
(-)boost_1_34_1-ORIGINAL/libs/spirit/test/numerics_tests.cpp (+1 lines)
Lines 11-16 Link Here
11
#include <boost/spirit/actor/assign_actor.hpp>
11
#include <boost/spirit/actor/assign_actor.hpp>
12
#include <iostream>
12
#include <iostream>
13
#include <boost/detail/lightweight_test.hpp>
13
#include <boost/detail/lightweight_test.hpp>
14
#include <climits>
14
15
15
using namespace std;
16
using namespace std;
16
using namespace boost::spirit;
17
using namespace boost::spirit;
(-)boost_1_34_1-ORIGINAL/tools/quickbook/detail/utils.cpp (+1 lines)
Lines 8-13 Link Here
8
    http://www.boost.org/LICENSE_1_0.txt)
8
    http://www.boost.org/LICENSE_1_0.txt)
9
=============================================================================*/
9
=============================================================================*/
10
#include "./utils.hpp"
10
#include "./utils.hpp"
11
#include <cstring>
11
#include <cctype>
12
#include <cctype>
12
#include <boost/spirit/core.hpp>
13
#include <boost/spirit/core.hpp>
13
14

Return to bug 210427