1 --- misc/boost_1_44_0/boost/algorithm/string/detail/find_format_store.hpp 2010-07-10 22:29:03.000000000 +0200
2 +++ misc/build/boost_1_44_0/boost/algorithm/string/detail/find_format_store.hpp 2012-06-06 23:13:26.000000000 +0200
6 template<typename InputT, typename FindResultT>
7 - bool check_find_result(InputT& Input, FindResultT& FindResult)
8 + bool check_find_result(InputT&, FindResultT& FindResult)
10 typedef BOOST_STRING_TYPENAME
11 range_const_iterator<InputT>::type input_iterator_type;
12 --- misc/boost_1_44_0/boost/concept_check.hpp
13 +++ misc/build/boost_1_44_0/boost/concept_check.hpp
14 @@ -136,7 +136,18 @@ namespace boost
16 BOOST_CONCEPT_USAGE(Assignable) {
17 #if !defined(_ITERATOR_) // back_insert_iterator broken for VC++ STL
18 +#if defined __clang__
19 +#if __has_warning("-Wself-assign-field")
20 +#pragma clang diagnostic push
21 +#pragma clang diagnostic ignored "-Wself-assign-field"
24 a = a; // require assignment operator
25 +#if defined __clang__
26 +#if __has_warning("-Wself-assign-field")
27 +#pragma clang diagnostic pop
33 --- misc/boost_1_44_0/boost/date_time/dst_rules.hpp 2008-02-27 21:00:24.000000000 +0100
34 +++ misc/build/boost_1_44_0/boost/date_time/dst_rules.hpp 2012-06-06 23:11:03.000000000 +0200
39 - static bool is_dst_boundary_day(date_type d)
40 + static bool is_dst_boundary_day(date_type)
44 --- misc/boost_1_44_0/boost/date_time/gregorian_calendar.ipp 2010-01-10 20:17:23.000000000 +0100
45 +++ misc/build/boost_1_44_0/boost/date_time/gregorian_calendar.ipp 2012-06-06 22:27:07.000000000 +0200
52 if((day==6) ||(day == 5 && is_leap_year(ymd.year))) {
53 return week; //under these circumstances week == 53.
55 --- misc/boost_1_44_0/boost/date_time/period_formatter.hpp 2008-02-27 21:00:24.000000000 +0100
56 +++ misc/build/boost_1_44_0/boost/date_time/period_formatter.hpp 2012-06-06 23:12:48.000000000 +0200
59 m_range_option = option;
61 - void delimiter_strings(const string_type& separator,
62 - const string_type& start_delim,
63 - const string_type& open_end_delim,
64 - const string_type& closed_end_delim)
65 + void delimiter_strings(const string_type&,
71 m_period_start_delimeter;
72 --- misc/boost_1_44_0/boost/token_functions.hpp 2010-06-12 14:06:28.000000000 +0200
73 +++ misc/build/boost_1_44_0/boost/token_functions.hpp 2012-06-06 23:12:27.000000000 +0200
76 struct assign_or_plus_equal<std::input_iterator_tag> {
77 template<class Iterator, class Token>
78 - static void assign(Iterator b, Iterator e, Token &t) { }
79 + static void assign(Iterator, Iterator, Token &) { }
80 template<class Token, class Value>
81 static void plus_equal(Token &t, const Value &v) {
83 --- misc/boost_1_44_0/boost/random/lagged_fibonacci.hpp
84 +++ misc/build/boost_1_44_0/boost/random/lagged_fibonacci.hpp
86 #ifndef BOOST_RANDOM_LAGGED_FIBONACCI_HPP
87 #define BOOST_RANDOM_LAGGED_FIBONACCI_HPP
90 +#pragma GCC system_header
93 #include <boost/config/no_tr1/cmath.hpp>
95 #include <algorithm> // std::max
96 --- misc/boost_1_44_0/boost/random/shuffle_output.hpp
97 +++ misc/build/boost_1_44_0/boost/random/shuffle_output.hpp
99 #ifndef BOOST_RANDOM_SHUFFLE_OUTPUT_HPP
100 #define BOOST_RANDOM_SHUFFLE_OUTPUT_HPP
102 +#if defined __GNUC__
103 +#pragma GCC system_header
107 #include <algorithm> // std::copy
109 --- misc/boost_1_44_0/boost/random/subtract_with_carry.hpp
110 +++ misc/build/boost_1_44_0/boost/random/subtract_with_carry.hpp
112 #ifndef BOOST_RANDOM_SUBTRACT_WITH_CARRY_HPP
113 #define BOOST_RANDOM_SUBTRACT_WITH_CARRY_HPP
115 +#if defined __GNUC__
116 +#pragma GCC system_header
119 #include <boost/config/no_tr1/cmath.hpp>
121 #include <algorithm> // std::equal
122 --- misc/boost_1_44_0/boost/uuid/name_generator.hpp
123 +++ misc/build/boost_1_44_0/boost/uuid/name_generator.hpp
126 for (size_t i=0; i<count; i++) {
127 uint32_t c = characters[i];
128 - sha.process_byte( (c >> 0) && 0xFF );
129 - sha.process_byte( (c >> 8) && 0xFF );
130 - sha.process_byte( (c >> 16) && 0xFF );
131 - sha.process_byte( (c >> 24) && 0xFF );
132 + sha.process_byte( (c >> 0) & 0xFF );
133 + sha.process_byte( (c >> 8) & 0xFF );
134 + sha.process_byte( (c >> 16) & 0xFF );
135 + sha.process_byte( (c >> 24) & 0xFF );
139 --- misc/boost_1_44_0/boost/random/discard_block.hpp
140 +++ misc/build/boost_1_44_0/boost/random/discard_block.hpp
143 result_type min BOOST_PREVENT_MACRO_SUBSTITUTION () const { return (_rng.min)(); }
144 result_type max BOOST_PREVENT_MACRO_SUBSTITUTION () const { return (_rng.max)(); }
145 - static bool validation(result_type x) { return true; } // dummy
146 + static bool validation(result_type) { return true; } // dummy
148 #ifndef BOOST_NO_OPERATORS_IN_NAMESPACE