1 --- misc/boost_1_44_0/boost/algorithm/string/detail/finder.hpp
2 +++ misc/build/boost_1_44_0/boost/algorithm/string/detail/finder.hpp
5 std::forward_iterator_tag ) const
7 - typedef ForwardIteratorT input_iterator_type;
8 typedef iterator_range<ForwardIteratorT> result_type;
10 first_finder_type first_finder(
15 - typedef ForwardIteratorT input_iterator_type;
16 typedef iterator_range<ForwardIteratorT> result_type;
23 - typedef ForwardIteratorT input_iterator_type;
24 typedef iterator_range<ForwardIteratorT> result_type;
29 std::random_access_iterator_tag )
31 - typedef ForwardIteratorT input_iterator_type;
32 typedef iterator_range<ForwardIteratorT> result_type;
34 if ( (End<=Begin) || ( static_cast<unsigned int>(End-Begin) < N ) )
37 std::random_access_iterator_tag )
39 - typedef ForwardIteratorT input_iterator_type;
40 typedef iterator_range<ForwardIteratorT> result_type;
42 if ( (End<=Begin) || ( static_cast<unsigned int>(End-Begin) < N ) )
43 --- misc/boost_1_44_0/boost/bind/arg.hpp
44 +++ misc/build/boost_1_44_0/boost/bind/arg.hpp
47 // static assert I == is_placeholder<T>::value
48 typedef char T_must_be_placeholder[ I == is_placeholder<T>::value? 1: -1 ];
49 + T_must_be_placeholder dummy; (void) dummy;
50 + // silence -Werror=unused-local-typedefs (GCC 4.8)
54 --- misc/boost_1_44_0/boost/concept/detail/general.hpp
55 +++ misc/build/boost_1_44_0/boost/concept/detail/general.hpp
57 # define BOOST_CONCEPT_ASSERT_FN( ModelFnPtr ) \
58 typedef ::boost::concepts::detail::instantiate< \
59 &::boost::concepts::requirement_<ModelFnPtr>::failed> \
60 - BOOST_PP_CAT(boost_concept_check,__LINE__)
61 + BOOST_PP_CAT(boost_concept_check,__LINE__); \
62 + BOOST_PP_CAT(boost_concept_check,__LINE__) BOOST_PP_CAT(boost_concept_check_dummy,__LINE__)(...)
63 + // silence -Werror=unused-local-typedefs (GCC 4.8) (and resulting Clang -Werror,-Wvexing-parse)
67 --- misc/boost_1_44_0/boost/date_time/date_parsing.hpp
68 +++ misc/build/boost_1_44_0/boost/date_time/date_parsing.hpp
73 - typedef typename date_type::year_type year_type;
74 typedef typename date_type::month_type month_type;
76 unsigned short year(0), month(0), day(0);
78 parse_undelimited_date(const std::string& s) {
79 int offsets[] = {4,2,2};
81 - typedef typename date_type::year_type year_type;
82 + //typedef typename date_type::year_type year_type;
83 //typename date_type::ymd_type ymd((year_type::min)(),1,1);
84 unsigned short y = 0, m = 0, d = 0;
86 --- misc/boost_1_44_0/boost/date_time/local_time/local_time_io.hpp
87 +++ misc/build/boost_1_44_0/boost/date_time/local_time/local_time_io.hpp
89 boost::io::ios_flags_saver iflags(os);
90 typedef local_date_time time_type;//::utc_time_type typename
91 typedef date_time::time_facet<time_type, CharT> custom_time_facet;
92 - typedef std::time_put<CharT> std_time_facet;
93 std::ostreambuf_iterator<CharT> oitr(os);
95 if(std::has_facet<custom_time_facet>(os.getloc())) {
97 const boost::local_time::local_time_period& p) {
98 boost::io::ios_flags_saver iflags(os);
99 typedef boost::date_time::time_facet<local_date_time, CharT> custom_facet;
100 - typedef std::time_put<CharT> std_time_facet;
101 std::ostreambuf_iterator<CharT> oitr(os);
102 if (std::has_facet<custom_facet>(os.getloc())) {
103 std::use_facet<custom_facet>(os.getloc()).put(oitr, os, os.fill(), p);
104 --- misc/boost_1_44_0/boost/date_time/posix_time/posix_time_io.hpp
105 +++ misc/build/boost_1_44_0/boost/date_time/posix_time/posix_time_io.hpp
108 boost::io::ios_flags_saver iflags(os);
109 typedef boost::date_time::time_facet<ptime, CharT> custom_ptime_facet;
110 - typedef std::time_put<CharT> std_ptime_facet;
111 std::ostreambuf_iterator<CharT> oitr(os);
112 if (std::has_facet<custom_ptime_facet>(os.getloc()))
113 std::use_facet<custom_ptime_facet>(os.getloc()).put(oitr, os, os.fill(), p);
115 const boost::posix_time::time_period& p) {
116 boost::io::ios_flags_saver iflags(os);
117 typedef boost::date_time::time_facet<ptime, CharT> custom_ptime_facet;
118 - typedef std::time_put<CharT> std_time_facet;
119 std::ostreambuf_iterator<CharT> oitr(os);
120 if (std::has_facet<custom_ptime_facet>(os.getloc())) {
121 std::use_facet<custom_ptime_facet>(os.getloc()).put(oitr, os, os.fill(), p);
124 boost::io::ios_flags_saver iflags(os);
125 typedef boost::date_time::time_facet<ptime, CharT> custom_ptime_facet;
126 - typedef std::time_put<CharT> std_ptime_facet;
127 std::ostreambuf_iterator<CharT> oitr(os);
128 if (std::has_facet<custom_ptime_facet>(os.getloc()))
129 std::use_facet<custom_ptime_facet>(os.getloc()).put(oitr, os, os.fill(), td);
130 --- misc/boost_1_44_0/boost/date_time/string_convert.hpp
131 +++ misc/build/boost_1_44_0/boost/date_time/string_convert.hpp
134 std::basic_string<OutputT> convert_string_type(const std::basic_string<InputT>& inp_str)
136 - typedef std::basic_string<InputT> input_type;
137 typedef std::basic_string<OutputT> output_type;
139 result.insert(result.begin(), inp_str.begin(), inp_str.end());
140 --- misc/boost_1_44_0/boost/date_time/strings_from_facet.hpp
141 +++ misc/build/boost_1_44_0/boost/date_time/strings_from_facet.hpp
144 typedef std::basic_string<charT> string_type;
145 typedef std::vector<string_type> collection_type;
146 - typedef std::basic_ostringstream<charT> ostream_type;
147 typedef std::ostreambuf_iterator<charT> ostream_iter_type;
148 typedef std::basic_ostringstream<charT> stringstream_type;
149 typedef std::time_put<charT> time_put_facet_type;
152 typedef std::basic_string<charT> string_type;
153 typedef std::vector<string_type> collection_type;
154 - typedef std::basic_ostringstream<charT> ostream_type;
155 typedef std::ostreambuf_iterator<charT> ostream_iter_type;
156 typedef std::basic_ostringstream<charT> stringstream_type;
157 typedef std::time_put<charT> time_put_facet_type;
158 --- misc/boost_1_44_0/boost/multi_array/concept_checks.hpp
159 +++ misc/build/boost_1_44_0/boost/multi_array/concept_checks.hpp
162 template <typename Array, typename IdxGen, typename Call_Type>
163 static void call(Array& a, const IdxGen& idgen, Call_Type c) {
164 - typedef typename Array::index_range index_range_;
165 - typedef typename Array::index index_;
166 idgen_helper<N-1>::call(a,idgen[c],c);
171 template <typename Array, typename IdxGen, typename Call_Type>
172 static void call(Array& a, const IdxGen& idgen, Call_Type) {
173 - typedef typename Array::index_range index_range_;
174 - typedef typename Array::index index_;
178 --- misc/boost_1_44_0/boost/spirit/home/classic/core/non_terminal/impl/grammar.ipp
179 +++ misc/build/boost_1_44_0/boost/spirit/home/classic/core/non_terminal/impl/grammar.ipp
181 #if !defined(BOOST_SPIRIT_SINGLE_GRAMMAR_INSTANCE)
182 typedef impl::grammar_helper_base<GrammarT> helper_base_t;
183 typedef grammar_helper_list<GrammarT> helper_list_t;
184 - typedef typename helper_list_t::vector_t::reverse_iterator iterator_t;
186 helper_list_t& helpers =
187 # if !defined(__GNUC__) || (__GNUC__ > 2)
190 # if (defined(BOOST_MSVC) && (BOOST_MSVC < 1300)) \
191 || defined(BOOST_INTEL_CXX_VERSION)
192 + typedef typename helper_list_t::vector_t::reverse_iterator iterator_t;
193 for (iterator_t i = helpers.rbegin(); i != helpers.rend(); ++i)
194 (*i)->undefine(self);
196 --- misc/boost_1_44_0/boost/spirit/home/classic/core/primitives/primitives.hpp
197 +++ misc/build/boost_1_44_0/boost/spirit/home/classic/core/primitives/primitives.hpp
199 typename parser_result<self_t, ScannerT>::type
200 parse(ScannerT const& scan) const
202 - typedef typename parser_result<self_t, ScannerT>::type result_t;
203 typedef typename ScannerT::value_t value_t;
204 typedef typename ScannerT::iterator_t iterator_t;
206 --- misc/boost_1_44_0/boost/spirit/home/classic/error_handling/exceptions.hpp
207 +++ misc/build/boost_1_44_0/boost/spirit/home/classic/error_handling/exceptions.hpp
209 parse(ScannerT const& scan) const
211 typedef typename parser_result<ParserT, ScannerT>::type result_t;
212 - typedef typename ScannerT::iterator_t iterator_t;
214 result_t hit = this->subject().parse(scan);
216 --- misc/boost_1_44_0/boost/spirit/home/classic/utility/functor_parser.hpp
217 +++ misc/build/boost_1_44_0/boost/spirit/home/classic/utility/functor_parser.hpp
219 typename parser_result<self_t, ScannerT>::type
220 parse(ScannerT const& scan) const
222 - typedef typename parser_result<self_t, ScannerT>::type result_t;
223 - typedef typename ScannerT::value_t value_t;
224 typedef typename ScannerT::iterator_t iterator_t;
226 iterator_t const s(scan.first);