Kaydet (Commit) fe82b223 authored tarafından Caolán McNamara's avatar Caolán McNamara

some more warnings in parts of boost we will use soon

Change-Id: Ie7a16402ab577ccae7688284712ed2657b509f76
üst 1cb1db44
...@@ -320,4 +320,25 @@ ...@@ -320,4 +320,25 @@
+ rule_info(std::string(name_to_register), trace_node_)) + rule_info(std::string(name_to_register), trace_node_))
).second; ).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)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment