diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-05-22 19:50:22 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-05-24 12:40:46 +0300 |
commit | 503b248127a92b9ad190e05f6a1d50574183cd47 (patch) | |
tree | 57aacf978349057e170ff0fb4507455217b63b71 /boost/boost.6369.warnings.patch | |
parent | 5944137e02a1d925a3445935b8fba66361640461 (diff) |
Update bundled boost to 1.53.0
Modify our patches as necessary to match the updated boost sources. Drop
patches for which corresponding (or even identical) changes already are
present. Add a new boostsystem static library and use it in two places.
Change-Id: Ib59558feb56dab87a69c91b38caca8e7a9e9a22e
Diffstat (limited to 'boost/boost.6369.warnings.patch')
-rw-r--r-- | boost/boost.6369.warnings.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/boost/boost.6369.warnings.patch b/boost/boost.6369.warnings.patch index 5a7e336ffc2c..81a5eac655a5 100644 --- a/boost/boost.6369.warnings.patch +++ b/boost/boost.6369.warnings.patch @@ -321,24 +321,3 @@ ).second; } ---- misc/boost_1_44_0/boost/variant/variant.hpp 2012-01-08 20:16:41.321760852 +0000 -+++ misc/build/boost_1_44_0/boost/variant/variant.hpp 2012-01-08 20:25:43.233484675 +0000 -@@ -1143,14 +1143,14 @@ - which_t which_; - storage_t storage_; - -- void indicate_which(int which) -+ void indicate_which(int i_which) - { -- which_ = static_cast<which_t>( which ); -+ which_ = static_cast<which_t>( i_which ); - } - -- void indicate_backup_which(int which) -+ void indicate_backup_which(int i_which) - { -- which_ = static_cast<which_t>( -(which + 1) ); -+ which_ = static_cast<which_t>( -(i_which + 1) ); - } - - private: // helpers, for queries (below) |