summaryrefslogtreecommitdiff
path: root/boost
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-04-21 21:30:35 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-04-22 10:46:29 +0100
commitfe82b2237baa7f64fc53e8c864535a28264baa6e (patch)
treee385eadb2d14a5cd8bc5d8e22f9e27ac237ffc35 /boost
parent1cb1db442e46616b1de121141cd94c114d4fce52 (diff)
some more warnings in parts of boost we will use soon
Change-Id: Ie7a16402ab577ccae7688284712ed2657b509f76
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)