diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-11-17 09:39:59 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-17 09:39:59 +0000 |
commit | c036e339cb70badcfb05811b221b08d2fc37fda0 (patch) | |
tree | 92b708912904d4626fe73398bf5a53ff3b3fa902 /boost | |
parent | c14b74ef7b6988cbcf80a3cfb61dbb36e0fdf7ce (diff) |
WaE, remove some shadow warnings from boost
Diffstat (limited to 'boost')
-rw-r--r-- | boost/boost.4713.warnings.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/boost/boost.4713.warnings.patch b/boost/boost.4713.warnings.patch index 32554c818a14..23ae4f149238 100644 --- a/boost/boost.4713.warnings.patch +++ b/boost/boost.4713.warnings.patch @@ -106,3 +106,24 @@ m_min, m_max); } +--- misc/build/boost_1_39_0/boost/spirit/home/classic/symbols/symbols.hpp ++++ misc/build/boost_1_39_0/boost/spirit/home/classic/symbols/symbols.hpp +@@ -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 + |