4321efa291
Change-Id: Ie637b6e7f452633a3cfa7826d7add0eb9846f7f8
71 lines
3.1 KiB
Diff
71 lines
3.1 KiB
Diff
--- misc/boost_1_44_0/boost/spirit/home/classic/symbols/symbols.hpp 2008-06-22 17:05:38.000000000 +0200
|
|
+++ misc/build/boost_1_44_0/boost/spirit/home/classic/symbols/symbols.hpp 2011-02-04 16:39:19.000000000 +0100
|
|
@@ -102,13 +102,13 @@
|
|
{
|
|
typedef typename ScannerT::iterator_t iterator_t;
|
|
iterator_t first = scan.first;
|
|
- typename SetT::search_info result = SetT::find(scan);
|
|
+ typename SetT::search_info result_ = SetT::find(scan);
|
|
|
|
- if (result.data)
|
|
+ if (result_.data)
|
|
return scan.
|
|
create_match(
|
|
- result.length,
|
|
- symbol_ref_t(*result.data),
|
|
+ result_.length,
|
|
+ symbol_ref_t(*result_.data),
|
|
first,
|
|
scan.first);
|
|
else
|
|
--- misc/boost_1_44_0/boost/spirit/home/classic/core/non_terminal/subrule.hpp 2011-02-08 09:24:50.817320629 +0000
|
|
+++ misc/build/boost_1_44_0/boost/spirit/home/classic/core/non_terminal/subrule.hpp 2011-02-08 09:25:20.496639901 +0000
|
|
@@ -210,7 +210,7 @@
|
|
subrule_list<
|
|
subrule_parser<ID2, DefT2, ContextT2>,
|
|
nil_t> >
|
|
- operator,(subrule_parser<ID2, DefT2, ContextT2> const& rhs) const
|
|
+ operator,(subrule_parser<ID2, DefT2, ContextT2> const& rhs_) const
|
|
{
|
|
return subrule_list<
|
|
self_t,
|
|
@@ -220,7 +220,7 @@
|
|
*this,
|
|
subrule_list<
|
|
subrule_parser<ID2, DefT2, ContextT2>, nil_t>(
|
|
- rhs, nil_t()));
|
|
+ rhs_, nil_t()));
|
|
}
|
|
|
|
typename DefT::embed_t rhs;
|
|
--- misc/boost_1_44_0/boost/spirit/home/classic/debug/impl/parser_names.ipp 2012-04-10 21:23:48.599238472 +0100
|
|
+++ misc/build/boost_1_44_0/boost/spirit/home/classic/debug/impl/parser_names.ipp 2012-04-10 21:24:02.752394878 +0100
|
|
@@ -395,13 +395,13 @@
|
|
}
|
|
|
|
bool register_node(void const *r, char const *name_to_register,
|
|
- bool trace_node)
|
|
+ bool trace_node_)
|
|
{
|
|
if (infos.find(r) != infos.end())
|
|
return false;
|
|
|
|
return infos.insert(rule_infos::value_type(r,
|
|
- rule_info(std::string(name_to_register), trace_node))
|
|
+ rule_info(std::string(name_to_register), trace_node_))
|
|
).second;
|
|
}
|
|
|
|
--- a/a/boost/boost/spirit/home/classic/error_handling/exceptions.hpp 2013-05-17 15:57:23.722638823 +0200
|
|
+++ a/a/boost/boost/spirit/home/classic/error_handling/exceptions.hpp 2013-05-17 15:26:32.319247352 +0200
|
|
@@ -126,8 +126,8 @@
|
|
typedef unary<ParserT, parser<self_t> > base_t;
|
|
typedef unary_parser_category parser_category_t;
|
|
|
|
- assertive_parser(ParserT const& parser, ErrorDescrT descriptor_)
|
|
- : base_t(parser), descriptor(descriptor_) {}
|
|
+ assertive_parser(ParserT const& parser_, ErrorDescrT descriptor_)
|
|
+ : base_t(parser_), descriptor(descriptor_) {}
|
|
|
|
template <typename ScannerT>
|
|
struct result
|