summaryrefslogtreecommitdiff
path: root/boost
diff options
context:
space:
mode:
Diffstat (limited to 'boost')
-rw-r--r--boost/boost.6369.warnings.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/boost/boost.6369.warnings.patch b/boost/boost.6369.warnings.patch
index 2cc1ebd27b2a..5a7e336ffc2c 100644
--- a/boost/boost.6369.warnings.patch
+++ b/boost/boost.6369.warnings.patch
@@ -320,4 +320,25 @@
+ rule_info(std::string(name_to_register), trace_node_))
).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)