From 51d55843333d4cd807a90303054178b229237e9b Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 8 Feb 2011 09:27:22 +0000 Subject: WaE: fix some shadowing warnings --- boost/boost.4713.warnings.patch | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) 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, + nil_t> > +- operator,(subrule_parser const& rhs) const ++ operator,(subrule_parser const& rhs_) const + { + return subrule_list< + self_t, +@@ -220,7 +220,7 @@ + *this, + subrule_list< + subrule_parser, nil_t>( +- rhs, nil_t())); ++ rhs_, nil_t())); + } + + typename DefT::embed_t rhs; -- cgit