1 --- boost/boost/multi_index/detail/index_matcher.hpp 2008-07-03 18:51:53.000000000 +0200
2 +++ boost/boost/multi_index/detail/index_matcher.hpp 2013-05-17 15:30:12.539099597 +0200
4 entries(),entries()+size_,
5 entry(node),entry::less_by_node()); /* localize entry */
7 - std::size_t n=ent->pos; /* get its position */
8 + std::size_t n_=ent->pos; /* get its position */
14 entry* pile_ent= /* find the first available pile */
15 std::lower_bound( /* to stack the entry */
16 entries(),entries()+num_piles,
17 dummy,entry::less_by_pile_top());
19 - pile_ent->pile_top=n; /* stack the entry */
20 + pile_ent->pile_top=n_; /* stack the entry */
21 pile_ent->pile_top_entry=ent;
23 /* if not the first pile, link entry to top of the preceding pile */
27 entry* ent=entries()[num_piles-1].pile_top_entry;
28 - for(std::size_t n=num_piles;n--;){
29 + for(std::size_t n_=num_piles;n_--;){
33 --- boost/boost/multi_index/ordered_index.hpp 2010-07-25 12:44:55.000000000 +0200
34 +++ boost/boost/multi_index/ordered_index.hpp 2013-05-17 15:33:42.785182819 +0200
37 template<typename CompatibleKey,typename CompatibleCompare>
39 - const CompatibleKey& x,const CompatibleCompare& comp)const
40 + const CompatibleKey& x,const CompatibleCompare& comp_)const
42 - return make_iterator(ordered_index_find(root(),header(),key,x,comp));
43 + return make_iterator(ordered_index_find(root(),header(),key,x,comp_));
46 template<typename CompatibleKey>
50 template<typename CompatibleKey,typename CompatibleCompare>
51 - size_type count(const CompatibleKey& x,const CompatibleCompare& comp)const
52 + size_type count(const CompatibleKey& x,const CompatibleCompare& comp_)const
54 - std::pair<iterator,iterator> p=equal_range(x,comp);
55 + std::pair<iterator,iterator> p=equal_range(x,comp_);
56 size_type n=std::distance(p.first,p.second);
61 template<typename CompatibleKey,typename CompatibleCompare>
63 - const CompatibleKey& x,const CompatibleCompare& comp)const
64 + const CompatibleKey& x,const CompatibleCompare& comp_)const
67 - ordered_index_lower_bound(root(),header(),key,x,comp));
68 + ordered_index_lower_bound(root(),header(),key,x,comp_));
71 template<typename CompatibleKey>
74 template<typename CompatibleKey,typename CompatibleCompare>
76 - const CompatibleKey& x,const CompatibleCompare& comp)const
77 + const CompatibleKey& x,const CompatibleCompare& comp_)const
80 - ordered_index_upper_bound(root(),header(),key,x,comp));
81 + ordered_index_upper_bound(root(),header(),key,x,comp_));
84 template<typename CompatibleKey>
87 template<typename CompatibleKey,typename CompatibleCompare>
88 std::pair<iterator,iterator> equal_range(
89 - const CompatibleKey& x,const CompatibleCompare& comp)const
90 + const CompatibleKey& x,const CompatibleCompare& comp_)const
92 std::pair<node_type*,node_type*> p=
93 - ordered_index_equal_range(root(),header(),key,x,comp);
94 + ordered_index_equal_range(root(),header(),key,x,comp_);
95 return std::pair<iterator,iterator>(
96 make_iterator(p.first),make_iterator(p.second));
98 --- boost/boost/multi_index/sequenced_index.hpp 2008-07-03 18:51:53.000000000 +0200
99 +++ boost/boost/multi_index/sequenced_index.hpp 2013-05-17 15:44:15.265289335 +0200
103 template<typename Modifier,typename Rollback>
104 - bool modify(iterator position,Modifier mod,Rollback back)
105 + bool modify(iterator position,Modifier mod,Rollback back_)
107 BOOST_MULTI_INDEX_CHECK_VALID_ITERATOR(position);
108 BOOST_MULTI_INDEX_CHECK_DEREFERENCEABLE_ITERATOR(position);
112 return this->final_modify_(
113 - mod,back,static_cast<final_node_type*>(position.get_node()));
114 + mod,back_,static_cast<final_node_type*>(position.get_node()));
117 void swap(sequenced_index<SuperMeta,TagList>& x)
118 --- boost/boost/multi_index_container.hpp 2010-07-24 11:20:29.000000000 +0200
119 +++ boost/boost/multi_index_container.hpp 2013-05-17 15:45:56.723899853 +0200
122 BOOST_APPEND_EXPLICIT_TEMPLATE_NON_TYPE(int,N))
124 - typedef typename nth_index<N>::type index;
125 + typedef typename nth_index<N>::type index_;
127 #if !defined(__SUNPRO_CC)||!(__SUNPRO_CC<0x580) /* fails in Sun C++ 5.7 */
130 BOOST_MULTI_INDEX_CHECK_IS_OWNER(
131 it,static_cast<typename IteratorType::container_type&>(*this));
133 - return index::make_iterator(static_cast<node_type*>(it.get_node()));
134 + return index_::make_iterator(static_cast<node_type*>(it.get_node()));
137 template<int N,typename IteratorType>
140 BOOST_APPEND_EXPLICIT_TEMPLATE_NON_TYPE(int,N))const
142 - typedef typename nth_index<N>::type index;
143 + typedef typename nth_index<N>::type index_;
145 #if !defined(__SUNPRO_CC)||!(__SUNPRO_CC<0x580) /* fails in Sun C++ 5.7 */
146 BOOST_STATIC_ASSERT((
148 BOOST_MULTI_INDEX_CHECK_VALID_ITERATOR(it);
149 BOOST_MULTI_INDEX_CHECK_IS_OWNER(
150 it,static_cast<const typename IteratorType::container_type&>(*this));
151 - return index::make_iterator(static_cast<node_type*>(it.get_node()));
152 + return index_::make_iterator(static_cast<node_type*>(it.get_node()));
158 BOOST_APPEND_EXPLICIT_TEMPLATE_TYPE(Tag))
160 - typedef typename index<Tag>::type index;
161 + typedef typename index<Tag>::type index_;
163 #if !defined(__SUNPRO_CC)||!(__SUNPRO_CC<0x580) /* fails in Sun C++ 5.7 */
166 BOOST_MULTI_INDEX_CHECK_VALID_ITERATOR(it);
167 BOOST_MULTI_INDEX_CHECK_IS_OWNER(
168 it,static_cast<typename IteratorType::container_type&>(*this));
169 - return index::make_iterator(static_cast<node_type*>(it.get_node()));
170 + return index_::make_iterator(static_cast<node_type*>(it.get_node()));
173 template<typename Tag,typename IteratorType>
176 BOOST_APPEND_EXPLICIT_TEMPLATE_TYPE(Tag))const
178 - typedef typename index<Tag>::type index;
179 + typedef typename index<Tag>::type index_;
181 #if !defined(__SUNPRO_CC)||!(__SUNPRO_CC<0x580) /* fails in Sun C++ 5.7 */
182 BOOST_STATIC_ASSERT((
184 BOOST_MULTI_INDEX_CHECK_VALID_ITERATOR(it);
185 BOOST_MULTI_INDEX_CHECK_IS_OWNER(
186 it,static_cast<const typename IteratorType::container_type&>(*this));
187 - return index::make_iterator(static_cast<node_type*>(it.get_node()));
188 + return index_::make_iterator(static_cast<node_type*>(it.get_node()));
192 --- boost/boost/property_tree/detail/json_parser_error.hpp 2007-05-13 00:02:53.000000000 +0200
193 +++ boost/boost/property_tree/detail/json_parser_error.hpp 2013-05-17 15:36:44.605902442 +0200
195 class json_parser_error: public file_parser_error
198 - json_parser_error(const std::string &message,
199 - const std::string &filename,
200 - unsigned long line):
201 - file_parser_error(message, filename, line)
202 + json_parser_error(const std::string &message_,
203 + const std::string &filename_,
204 + unsigned long line_):
205 + file_parser_error(message_, filename_, line_)
209 --- boost/boost/property_tree/detail/json_parser_read.hpp 2013-05-17 15:57:23.740638395 +0200
210 +++ boost/boost/property_tree/detail/json_parser_read.hpp 2013-05-17 15:31:05.666857356 +0200
215 - a_object_s(context &c): c(c) { }
216 + a_object_s(context &c_): c(c_) { }
217 void operator()(Ch) const
224 - a_object_e(context &c): c(c) { }
225 + a_object_e(context &c_): c(c_) { }
226 void operator()(Ch) const
228 BOOST_ASSERT(c.stack.size() >= 1);
233 - a_name(context &c): c(c) { }
234 + a_name(context &c_): c(c_) { }
235 void operator()(It, It) const
237 c.name.swap(c.string);
242 - a_string_val(context &c): c(c) { }
243 + a_string_val(context &c_): c(c_) { }
244 void operator()(It, It) const
246 BOOST_ASSERT(c.stack.size() >= 1);
251 - a_literal_val(context &c): c(c) { }
252 + a_literal_val(context &c_): c(c_) { }
253 void operator()(It b, It e) const
255 BOOST_ASSERT(c.stack.size() >= 1);
260 - a_char(context &c): c(c) { }
261 - void operator()(It b, It e) const
262 + a_char(context &c_): c(c_) { }
263 + void operator()(It b, It /* e */) const
271 - a_escape(context &c): c(c) { }
272 + a_escape(context &c_): c(c_) { }
273 void operator()(Ch ch) const
280 - a_unicode(context &c): c(c) { }
281 + a_unicode(context &c_): c(c_) { }
282 void operator()(unsigned long u) const
284 u = (std::min)(u, static_cast<unsigned long>((std::numeric_limits<Ch>::max)()));
285 --- boost/boost/property_tree/detail/ptree_implementation.hpp 2010-07-03 22:59:45.000000000 +0200
286 +++ boost/boost/property_tree/detail/ptree_implementation.hpp 2013-05-17 15:55:56.449713452 +0200
287 @@ -539,48 +539,48 @@
289 template<class K, class D, class C>
290 basic_ptree<K, D, C> &
291 - basic_ptree<K, D, C>::get_child(const path_type &path)
292 + basic_ptree<K, D, C>::get_child(const path_type &path_)
295 + path_type p(path_);
296 self_type *n = walk_path(p);
298 - BOOST_PROPERTY_TREE_THROW(ptree_bad_path("No such node", path));
299 + BOOST_PROPERTY_TREE_THROW(ptree_bad_path("No such node", path_));
304 template<class K, class D, class C> inline
305 const basic_ptree<K, D, C> &
306 - basic_ptree<K, D, C>::get_child(const path_type &path) const
307 + basic_ptree<K, D, C>::get_child(const path_type &path_) const
309 - return const_cast<self_type*>(this)->get_child(path);
310 + return const_cast<self_type*>(this)->get_child(path_);
313 template<class K, class D, class C> inline
314 basic_ptree<K, D, C> &
315 - basic_ptree<K, D, C>::get_child(const path_type &path,
316 + basic_ptree<K, D, C>::get_child(const path_type &path_,
317 self_type &default_value)
320 + path_type p(path_);
321 self_type *n = walk_path(p);
322 return n ? *n : default_value;
325 template<class K, class D, class C> inline
326 const basic_ptree<K, D, C> &
327 - basic_ptree<K, D, C>::get_child(const path_type &path,
328 + basic_ptree<K, D, C>::get_child(const path_type &path_,
329 const self_type &default_value) const
331 - return const_cast<self_type*>(this)->get_child(path,
332 + return const_cast<self_type*>(this)->get_child(path_,
333 const_cast<self_type&>(default_value));
337 template<class K, class D, class C>
338 optional<basic_ptree<K, D, C> &>
339 - basic_ptree<K, D, C>::get_child_optional(const path_type &path)
340 + basic_ptree<K, D, C>::get_child_optional(const path_type &path_)
343 + path_type p(path_);
344 self_type *n = walk_path(p);
346 return optional<self_type&>();
349 template<class K, class D, class C>
350 optional<const basic_ptree<K, D, C> &>
351 - basic_ptree<K, D, C>::get_child_optional(const path_type &path) const
352 + basic_ptree<K, D, C>::get_child_optional(const path_type &path_) const
355 + path_type p(path_);
356 self_type *n = walk_path(p);
358 return optional<const self_type&>();
359 @@ -602,10 +602,10 @@
361 template<class K, class D, class C>
362 basic_ptree<K, D, C> &
363 - basic_ptree<K, D, C>::put_child(const path_type &path,
364 + basic_ptree<K, D, C>::put_child(const path_type &path_,
365 const self_type &value)
368 + path_type p(path_);
369 self_type &parent = force_path(p);
370 // Got the parent. Now get the correct child.
371 key_type fragment = p.reduce();
372 @@ -620,10 +620,10 @@
374 template<class K, class D, class C>
375 basic_ptree<K, D, C> &
376 - basic_ptree<K, D, C>::add_child(const path_type &path,
377 + basic_ptree<K, D, C>::add_child(const path_type &path_,
378 const self_type &value)
381 + path_type p(path_);
382 self_type &parent = force_path(p);
384 key_type fragment = p.reduce();
385 @@ -709,26 +709,26 @@
386 template<class K, class D, class C>
387 template<class Type, class Translator> inline
388 typename boost::enable_if<detail::is_translator<Translator>, Type>::type
389 - basic_ptree<K, D, C>::get(const path_type &path,
390 + basic_ptree<K, D, C>::get(const path_type &path_,
393 - return get_child(path).BOOST_NESTED_TEMPLATE get_value<Type>(tr);
394 + return get_child(path_).BOOST_NESTED_TEMPLATE get_value<Type>(tr);
397 template<class K, class D, class C>
398 template<class Type> inline
399 - Type basic_ptree<K, D, C>::get(const path_type &path) const
400 + Type basic_ptree<K, D, C>::get(const path_type &path_) const
402 - return get_child(path).BOOST_NESTED_TEMPLATE get_value<Type>();
403 + return get_child(path_).BOOST_NESTED_TEMPLATE get_value<Type>();
406 template<class K, class D, class C>
407 template<class Type, class Translator> inline
408 - Type basic_ptree<K, D, C>::get(const path_type &path,
409 + Type basic_ptree<K, D, C>::get(const path_type &path_,
410 const Type &default_value,
413 - return get_optional<Type>(path, tr).get_value_or(default_value);
414 + return get_optional<Type>(path_, tr).get_value_or(default_value);
417 template<class K, class D, class C>
418 @@ -738,18 +738,18 @@
419 std::basic_string<Ch>
421 basic_ptree<K, D, C>::get(
422 - const path_type &path, const Ch *default_value, Translator tr) const
423 + const path_type &path_, const Ch *default_value, Translator tr) const
425 - return get<std::basic_string<Ch>, Translator>(path, default_value, tr);
426 + return get<std::basic_string<Ch>, Translator>(path_, default_value, tr);
429 template<class K, class D, class C>
430 template<class Type> inline
431 typename boost::disable_if<detail::is_translator<Type>, Type>::type
432 - basic_ptree<K, D, C>::get(const path_type &path,
433 + basic_ptree<K, D, C>::get(const path_type &path_,
434 const Type &default_value) const
436 - return get_optional<Type>(path).get_value_or(default_value);
437 + return get_optional<Type>(path_).get_value_or(default_value);
440 template<class K, class D, class C>
441 @@ -759,17 +759,17 @@
442 std::basic_string<Ch>
444 basic_ptree<K, D, C>::get(
445 - const path_type &path, const Ch *default_value) const
446 + const path_type &path_, const Ch *default_value) const
448 - return get< std::basic_string<Ch> >(path, default_value);
449 + return get< std::basic_string<Ch> >(path_, default_value);
452 template<class K, class D, class C>
453 template<class Type, class Translator>
454 - optional<Type> basic_ptree<K, D, C>::get_optional(const path_type &path,
455 + optional<Type> basic_ptree<K, D, C>::get_optional(const path_type &path_,
458 - if (optional<const self_type&> child = get_child_optional(path))
459 + if (optional<const self_type&> child = get_child_optional(path_))
461 BOOST_NESTED_TEMPLATE get_value_optional<Type>(tr);
464 template<class K, class D, class C>
466 optional<Type> basic_ptree<K, D, C>::get_optional(
467 - const path_type &path) const
468 + const path_type &path_) const
470 - if (optional<const self_type&> child = get_child_optional(path))
471 + if (optional<const self_type&> child = get_child_optional(path_))
472 return child.get().BOOST_NESTED_TEMPLATE get_value_optional<Type>();
474 return optional<Type>();
475 @@ -809,13 +809,13 @@
476 template<class K, class D, class C>
477 template<class Type, typename Translator>
478 basic_ptree<K, D, C> & basic_ptree<K, D, C>::put(
479 - const path_type &path, const Type &value, Translator tr)
480 + const path_type &path_, const Type &value, Translator tr)
482 - if(optional<self_type &> child = get_child_optional(path)) {
483 + if(optional<self_type &> child = get_child_optional(path_)) {
484 child.get().put_value(value, tr);
487 - self_type &child2 = put_child(path, self_type());
488 + self_type &child2 = put_child(path_, self_type());
489 child2.put_value(value, tr);
492 @@ -824,18 +824,18 @@
493 template<class K, class D, class C>
494 template<class Type> inline
495 basic_ptree<K, D, C> & basic_ptree<K, D, C>::put(
496 - const path_type &path, const Type &value)
497 + const path_type &path_, const Type &value)
499 - return put(path, value,
500 + return put(path_, value,
501 typename translator_between<data_type, Type>::type());
504 template<class K, class D, class C>
505 template<class Type, typename Translator> inline
506 basic_ptree<K, D, C> & basic_ptree<K, D, C>::add(
507 - const path_type &path, const Type &value, Translator tr)
508 + const path_type &path_, const Type &value, Translator tr)
510 - self_type &child = add_child(path, self_type());
511 + self_type &child = add_child(path_, self_type());
512 child.put_value(value, tr);
516 template<class K, class D, class C>
517 template<class Type> inline
518 basic_ptree<K, D, C> & basic_ptree<K, D, C>::add(
519 - const path_type &path, const Type &value)
520 + const path_type &path_, const Type &value)
522 - return add(path, value,
523 + return add(path_, value,
524 typename translator_between<data_type, Type>::type());
527 --- boost/boost/spirit/home/classic/error_handling/exceptions.hpp 2013-05-17 15:57:23.722638823 +0200
528 +++ boost/boost/spirit/home/classic/error_handling/exceptions.hpp 2013-05-17 15:26:32.319247352 +0200
530 typedef unary<ParserT, parser<self_t> > base_t;
531 typedef unary_parser_category parser_category_t;
533 - assertive_parser(ParserT const& parser, ErrorDescrT descriptor_)
534 - : base_t(parser), descriptor(descriptor_) {}
535 + assertive_parser(ParserT const& parser_, ErrorDescrT descriptor_)
536 + : base_t(parser_), descriptor(descriptor_) {}
538 template <typename ScannerT>