summaryrefslogtreecommitdiff
path: root/boost
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-02-08 09:27:22 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-02-08 09:27:22 +0000
commit51d55843333d4cd807a90303054178b229237e9b (patch)
tree0ddea2270d5cd749cb34fc008ab56833ddcbdb19 /boost
parent1c0c7b8510d90895bc65323eee5d9b37944e4361 (diff)
WaE: fix some shadowing warnings
Diffstat (limited to 'boost')
-rw-r--r--boost/boost.4713.warnings.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/boost/boost.4713.warnings.patch b/boost/boost.4713.warnings.patch
index 5e5dd20cb1bb..95da4f34400e 100644
--- a/boost/boost.4713.warnings.patch
+++ b/boost/boost.4713.warnings.patch
@@ -692,3 +692,23 @@
Ptr& ptr() const { return ptr_; }
private:
Ptr& ptr_;
+--- misc/boost_1_44_0boost/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;