diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-10 22:15:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-11 12:06:23 +0100 |
commit | cc84a792f2131d8e5b244f239f5ba71e4ef5d48d (patch) | |
tree | 8aec2f5d89c4a7d97b3a8b8f19758f85bbd57a59 /boost | |
parent | ba8b1c2fec58286fe1d128cc54131a858c58e369 (diff) |
WaE: some more boost warnings
Diffstat (limited to 'boost')
-rw-r--r-- | boost/boost.6369.warnings.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/boost/boost.6369.warnings.patch b/boost/boost.6369.warnings.patch index 545f9c09c8c4..2cc1ebd27b2a 100644 --- a/boost/boost.6369.warnings.patch +++ b/boost/boost.6369.warnings.patch @@ -303,3 +303,21 @@ std::locale l = std::locale(is.getloc(), f); is.imbue(l); f->get(sit, str_end, is, td); +--- 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; + } + |